소스 검색

Use variables

Signed-off-by: Mario Danic <mario@lovelyhq.com>
Mario Danic 7 년 전
부모
커밋
ab4d6f2934
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/gplay/java/com/owncloud/android/services/firebase/NCFirebaseMessagingService.java

+ 2 - 2
src/gplay/java/com/owncloud/android/services/firebase/NCFirebaseMessagingService.java

@@ -32,9 +32,9 @@ public class NCFirebaseMessagingService extends FirebaseMessagingService {
         if (remoteMessage.getData() != null) {
             PersistableBundleCompat persistableBundleCompat = new PersistableBundleCompat();
             persistableBundleCompat.putString(NotificationJob.KEY_NOTIFICATION_SUBJECT, remoteMessage.getData().get
-                    ("subject"));
+                    (NotificationJob.KEY_NOTIFICATION_SUBJECT));
             persistableBundleCompat.putString(NotificationJob.KEY_NOTIFICATION_SIGNATURE, remoteMessage.getData().get
-                    ("signature"));
+                    (NotificationJob.KEY_NOTIFICATION_SIGNATURE));
             new JobRequest.Builder(NotificationJob.TAG)
                     .addExtras(persistableBundleCompat)
                     .setUpdateCurrent(false)