mirror of
https://github.com/WuKongIM/WuKongIMFlutterSDK
synced 2025-06-05 12:33:41 +00:00
fix: Update send message fromChannel information is Null
This commit is contained in:
parent
b0c06930fb
commit
45e66eef06
@ -46,7 +46,7 @@
|
|||||||
* Modifying the issue of reconnecting disconnected objects without destroying them
|
* Modifying the issue of reconnecting disconnected objects without destroying them
|
||||||
### 1.2.3
|
### 1.2.3
|
||||||
* Optimize message queries
|
* Optimize message queries
|
||||||
### 1.2.4
|
### 1.2.4
|
||||||
* Optimize connection
|
* Optimize connection
|
||||||
### 1.2.5
|
### 1.2.5
|
||||||
* Modifying the issue of disconnected sockets not being destroyed
|
* Modifying the issue of disconnected sockets not being destroyed
|
||||||
@ -90,3 +90,5 @@
|
|||||||
* fix: Update parsing channel member extension data
|
* fix: Update parsing channel member extension data
|
||||||
### 1.4.5
|
### 1.4.5
|
||||||
* fix: Update send & recv message No fromChannel information added
|
* fix: Update send & recv message No fromChannel information added
|
||||||
|
### 1.4.6
|
||||||
|
* fix: Update send message fromChannel information is Null
|
@ -584,8 +584,8 @@ class WKMessageManager {
|
|||||||
wkMsg.setChannelInfo(channel);
|
wkMsg.setChannelInfo(channel);
|
||||||
WKChannel? from = await WKIM.shared.channelManager
|
WKChannel? from = await WKIM.shared.channelManager
|
||||||
.getChannel(wkMsg.fromUID, WKChannelType.personal);
|
.getChannel(wkMsg.fromUID, WKChannelType.personal);
|
||||||
if (from == null) {
|
if (from != null) {
|
||||||
wkMsg.setFrom(from!);
|
wkMsg.setFrom(from);
|
||||||
}
|
}
|
||||||
int row = await saveMsg(wkMsg);
|
int row = await saveMsg(wkMsg);
|
||||||
wkMsg.clientSeq = row;
|
wkMsg.clientSeq = row;
|
||||||
|
@ -15,7 +15,7 @@ description: wukong IM flutter sdk
|
|||||||
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
|
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
|
||||||
# In Windows, build-name is used as the major, minor, and patch parts
|
# In Windows, build-name is used as the major, minor, and patch parts
|
||||||
# of the product and file versions while build-number is used as the build suffix.
|
# of the product and file versions while build-number is used as the build suffix.
|
||||||
version: 1.4.5
|
version: 1.4.6
|
||||||
homepage: https://github.com/WuKongIM/WuKongIMFlutterSDK
|
homepage: https://github.com/WuKongIM/WuKongIMFlutterSDK
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user