Skip to content

Commit

Permalink
Fix library (#19)
Browse files Browse the repository at this point in the history
* fix-data-type

* fix-data-type

* fix-date-type

* fix-data-type
  • Loading branch information
nguyendao2101 authored Oct 24, 2024
1 parent 0b927f4 commit eb1dd0e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lib/ezy_codec.dart
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ class EzyRSAProxy {
callback(result)
});
}
}
}
3 changes: 1 addition & 2 deletions lib/ezy_config.dart
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ class EzyConfig {
}

class EzyPingConfig {

late int pingPeriod = 3000;
late int maxLostPingCount = 5;

Expand All @@ -51,4 +50,4 @@ class EzyReconnectConfig {
map["reconnectPeriod"] = reconnectPeriod;
return map;
}
}
}
2 changes: 1 addition & 1 deletion lib/ezy_handlers.dart
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ class EzyAppResponseHandler extends EzyAbstractDataHandler {
var appId = data[0] as int;
var responseData = data[1] as List;
var cmd = responseData[0];
var commandData = responseData[1] as Map;
var commandData = responseData[1];

var app = client.getAppById(appId);
if (app == null) {
Expand Down
2 changes: 1 addition & 1 deletion lib/ezy_util.dart
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ class UUID {
)
);
}
}
}

0 comments on commit eb1dd0e

Please sign in to comment.