mirror of
https://gitlab.com/veilid/veilid.git
synced 2025-08-03 12:16:22 -04:00
route fixes
This commit is contained in:
parent
36b6e7446f
commit
2e1920b626
13 changed files with 89 additions and 98 deletions
|
@ -185,8 +185,9 @@ class VeilidJS implements Veilid {
|
|||
}
|
||||
|
||||
@override
|
||||
Future<String> debug(String command) {
|
||||
return _wrapApiPromise(js_util.callMethod(wasm, "debug", [command]));
|
||||
Future<String> debug(String command) async {
|
||||
return jsonDecode(
|
||||
await _wrapApiPromise(js_util.callMethod(wasm, "debug", [command])));
|
||||
}
|
||||
|
||||
@override
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue