Skip to content

Commit

Permalink
💾 Feat(DeviceService): Rebuild more info.
Browse files Browse the repository at this point in the history
  • Loading branch information
Dynesshely committed Mar 31, 2023
1 parent f961b83 commit 965185b
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions kitx_mobile/lib/services/device_service.dart
@@ -1,7 +1,6 @@
import 'dart:async';

import 'package:get/get.dart';

import 'package:kitx_mobile/models/device_info.dart';
import 'package:kitx_mobile/services/public/service_status.dart';
import 'package:kitx_mobile/utils/config.dart';
Expand Down Expand Up @@ -32,7 +31,11 @@ class DeviceService {
(b) {
b
..sendTime = info.sendTime
..isMainDevice = info.isMainDevice;
..isMainDevice = info.isMainDevice
..deviceOSVersion = info.deviceOSVersion
..deviceServerPort = info.deviceServerPort
..pluginServerPort = info.pluginServerPort
..pluginsCount = info.pluginsCount;
},
);
deviceInfoList.refresh();
Expand Down

0 comments on commit 965185b

Please sign in to comment.