File tree 3 files changed +22
-1
lines changed
3 files changed +22
-1
lines changed Original file line number Diff line number Diff line change
1
+ # 0.5.3
2
+
3
+ ## Bug Fixes
4
+
5
+ - iOS - Fixed an issue where onBadgeChanged was not called
6
+
7
+ # 0.5.1
8
+
9
+ ## Update
10
+ * Apply reaction
11
+ * Apply files security
12
+
13
+ # 0.5.0
14
+ ## Updates
15
+ * Renew apis - channeltalk plugin v8.0
16
+
1
17
# 0.4.4 ~ 0.4.6
2
18
## Bug fixes
3
19
* Hotfix
Original file line number Diff line number Diff line change @@ -361,6 +361,11 @@ - (NSDictionary *)constantsToExport {
361
361
}
362
362
363
363
#pragma mark ChannelPluginDelegate
364
+ - (void )onBadgeChangedWithCount : (NSInteger )count {
365
+ if (hasListeners) {
366
+ [self sendEventWithName: EVENT_ON_BADGE_CHANGED body: @{KEY_COUNT: @(count)}];
367
+ }
368
+ }
364
369
365
370
- (void )onBadgeChangedWithAlert : (NSInteger )alert {
366
371
if (hasListeners) {
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " react-native-channel-plugin" ,
3
- "version" : " 0.5.1 " ,
3
+ "version" : " 0.5.3 " ,
4
4
"description" : " react native module for channel io" ,
5
5
"main" : " index.js" ,
6
6
"scripts" : {
You can’t perform that action at this time.
0 commit comments