Skip to content

Commit 1481694

Browse files
committed
Added push data keys for APNS keys thread-id, urlArgs.
1 parent 425d7d8 commit 1481694

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/APNS.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,12 @@ export class APNS {
200200
case 'category':
201201
notification.setCategory(coreData.category);
202202
break;
203+
case 'threadId':
204+
notification.setThreadId(coreData.threadId);
205+
break;
206+
case 'urlArgs':
207+
notification.setUrlArgs(coreData.urlArgs);
208+
break;
203209
default:
204210
payload[key] = coreData[key];
205211
break;

0 commit comments

Comments
 (0)