| Index: samples/swarm/DataSource.dart
|
| diff --git a/samples/swarm/DataSource.dart b/samples/swarm/DataSource.dart
|
| index dfb352dc85145d10bf0957fae82c43adfda533f6..ee9d3e750444b52724d968b84c37f93d6769aa94 100644
|
| --- a/samples/swarm/DataSource.dart
|
| +++ b/samples/swarm/DataSource.dart
|
| @@ -218,7 +218,7 @@ class Article {
|
| // TODO(jimhug): need to return a lazy Observable<String> and also
|
| // add support for preloading.
|
| void _ensureLoaded() {
|
| - if (_htmlBody !== null) return;
|
| + if (_htmlBody != null) return;
|
|
|
| var name = '$dataUri.html';
|
| if (Sections.runningFromFile) {
|
|
|