fix:修复自定义消息刷新设备列表的问题
This commit is contained in:
parent
58fb182534
commit
1b97722657
@ -127,6 +127,8 @@ PODS:
|
||||
- Flutter
|
||||
- network_info_plus (0.0.1):
|
||||
- Flutter
|
||||
- open_filex (0.0.2):
|
||||
- Flutter
|
||||
- package_info_plus (0.4.5):
|
||||
- Flutter
|
||||
- path_provider_foundation (0.0.1):
|
||||
@ -188,6 +190,7 @@ DEPENDENCIES:
|
||||
- jpush_flutter (from `.symlinks/plugins/jpush_flutter/ios`)
|
||||
- just_audio (from `.symlinks/plugins/just_audio/ios`)
|
||||
- network_info_plus (from `.symlinks/plugins/network_info_plus/ios`)
|
||||
- open_filex (from `.symlinks/plugins/open_filex/ios`)
|
||||
- package_info_plus (from `.symlinks/plugins/package_info_plus/ios`)
|
||||
- path_provider_foundation (from `.symlinks/plugins/path_provider_foundation/darwin`)
|
||||
- permission_handler_apple (from `.symlinks/plugins/permission_handler_apple/ios`)
|
||||
@ -280,6 +283,8 @@ EXTERNAL SOURCES:
|
||||
:path: ".symlinks/plugins/just_audio/ios"
|
||||
network_info_plus:
|
||||
:path: ".symlinks/plugins/network_info_plus/ios"
|
||||
open_filex:
|
||||
:path: ".symlinks/plugins/open_filex/ios"
|
||||
package_info_plus:
|
||||
:path: ".symlinks/plugins/package_info_plus/ios"
|
||||
path_provider_foundation:
|
||||
@ -344,6 +349,7 @@ SPEC CHECKSUMS:
|
||||
jpush_flutter: 1f436f1a02db5c5ef9e9b42378f557096ccd328b
|
||||
just_audio: baa7252489dbcf47a4c7cc9ca663e9661c99aafa
|
||||
network_info_plus: 6d0c3eb8367b8164fa3fb0c19875e3f59d49697f
|
||||
open_filex: 6e26e659846ec990262224a12ef1c528bb4edbe4
|
||||
package_info_plus: 6c92f08e1f853dc01228d6f553146438dafcd14e
|
||||
path_provider_foundation: 2b6b4c569c0fb62ec74538f866245ac84301af46
|
||||
permission_handler_apple: 9878588469a2b0d0fc1e048d9f43605f92e6cec2
|
||||
|
||||
@ -179,7 +179,7 @@ class LockMainLogic extends BaseGetXController {
|
||||
|
||||
list.lockList ??= <LockListInfoItemEntity>[];
|
||||
final int keyIndex = lockList.indexWhere(
|
||||
(LockListInfoItemEntity lock) => lock.keyId == keyId) ??
|
||||
(LockListInfoItemEntity lock) => lock.lockId == lockId) ??
|
||||
-1;
|
||||
if (keyIndex != -1) {
|
||||
//已存在
|
||||
|
||||
@ -24,6 +24,7 @@ class MessageManagement {
|
||||
if (extra.isEmpty) {
|
||||
return;
|
||||
}
|
||||
AppLog.log(message.toString());
|
||||
_shuntingBus(extra);
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user