Skip to content

Commit ba837e5

Browse files
committed
update
2 parents 2c14ff3 + 855ff0e commit ba837e5

File tree

4 files changed

+9
-2
lines changed

4 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,12 @@
5050
#### 修复
5151
- 修复下载附件结束后状态不准确的问题。
5252

53+
## 4.0.0+7
54+
- 修复初始化问题。
55+
56+
## 4.0.0+6
57+
- 修复下载附件结束后状态不准确的问题。
58+
5359
## 4.0.0+5
5460

5561
#### 修复

android/src/main/java/com/easemob/im_flutter_sdk/EMClientWrapper.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -319,6 +319,7 @@ private void init(JSONObject param, String channelName, Result result) throws JS
319319
registerEaseListener();
320320

321321
onSuccess(result, channelName, null);
322+
322323
}
323324

324325
private void renewToken(JSONObject param, String channelName, Result result) throws JSONException {

ios/Classes/EMChatManagerWrapper.m

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
#import "EMMessageReactionChange+Helper.h"
1818
#import "EMFetchServerMessagesOption+Helper.h"
1919

20+
2021
@interface EMChatManagerWrapper () <EMChatManagerDelegate>
2122
@property (nonatomic, strong) FlutterMethodChannel *messageChannel;
2223

@@ -606,7 +607,6 @@ - (NSDictionary *)updateDownloadStatus:(EMDownloadStatus)status
606607
}
607608
msg.body = body;
608609
}
609-
610610
return [msg toJson];
611611
}
612612

@@ -703,6 +703,7 @@ - (void)fetchHistoryMessagesByOptions:(NSDictionary *)param
703703
}];
704704
}
705705

706+
706707
- (void)fetchGroupReadAck:(NSDictionary *)param
707708
channelName:(NSString *)aChannelName
708709
result:(FlutterResult) result {

ios/Classes/EMClientWrapper.m

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ - (instancetype)initWithChannelName:(NSString *)aChannelName
5757
registrar:(NSObject<FlutterPluginRegistrar>*)registrar {
5858
if(self = [super initWithChannelName:aChannelName
5959
registrar:registrar]) {
60-
6160
}
6261
return self;
6362
}

0 commit comments

Comments
 (0)