|
@@ -17,7 +17,6 @@
|
17
|
17
|
package org.jitsi.meet.sdk;
|
18
|
18
|
|
19
|
19
|
import static org.jitsi.meet.sdk.NotificationChannels.ONGOING_CONFERENCE_CHANNEL_ID;
|
20
|
|
-import static org.jitsi.meet.sdk.NotificationChannels.ONGOING_CONFERNCE_CHANNEL_NAME;
|
21
|
20
|
|
22
|
21
|
import android.app.Notification;
|
23
|
22
|
import android.app.NotificationChannel;
|
|
@@ -66,7 +65,7 @@ class OngoingNotification {
|
66
|
65
|
return;
|
67
|
66
|
}
|
68
|
67
|
|
69
|
|
- channel = new NotificationChannel(ONGOING_CONFERENCE_CHANNEL_ID, ONGOING_CONFERNCE_CHANNEL_NAME, NotificationManager.IMPORTANCE_DEFAULT);
|
|
68
|
+ channel = new NotificationChannel(ONGOING_CONFERENCE_CHANNEL_ID, context.getString(R.string.ongoing_notification_action_unmute), NotificationManager.IMPORTANCE_DEFAULT);
|
70
|
69
|
channel.enableLights(false);
|
71
|
70
|
channel.enableVibration(false);
|
72
|
71
|
channel.setShowBadge(false);
|