| Index: bin/inference/client.dart
|
| diff --git a/bin/inference/client.dart b/bin/inference/client.dart
|
| index 7f7fcbd63b421c6b16dd131cf10b55c4ab351f3a..0674653e5be1559f28dada003f45b30fc76fbb85 100644
|
| --- a/bin/inference/client.dart
|
| +++ b/bin/inference/client.dart
|
| @@ -14,7 +14,7 @@ import 'package:charcode/charcode.dart';
|
| AllInfo data;
|
| main() async {
|
| data =
|
| - AllInfo.parseFromJson(JSON.decode(await HttpRequest.getString('/data')));
|
| + new AllInfo.fromJson(JSON.decode(await HttpRequest.getString('/data')));
|
|
|
| routeByHash();
|
| window.onHashChange.listen((_) => routeByHash());
|
|
|