summaryrefslogtreecommitdiffhomepage
path: root/android/src/main/kotlin
diff options
context:
space:
mode:
authorJanito Vaqueiro Ferreira Filho <janito@mullvad.net>2020-03-11 16:24:59 +0000
committerJanito Vaqueiro Ferreira Filho <janito@mullvad.net>2020-03-18 13:31:35 +0000
commitd3227d7716fd6cf0b43c5060fed38e486fa28146 (patch)
tree639b5953103730484d52b7fa96473e3036876ae2 /android/src/main/kotlin
parentafe04ac497a3fe2e6d826c5ff18c7759961ab1b9 (diff)
downloadmullvadvpn-d3227d7716fd6cf0b43c5060fed38e486fa28146.tar.xz
mullvadvpn-d3227d7716fd6cf0b43c5060fed38e486fa28146.zip
Rename notification icon drawable
So that it can be shared with the quick settings tile
Diffstat (limited to 'android/src/main/kotlin')
-rw-r--r--android/src/main/kotlin/net/mullvad/mullvadvpn/service/ForegroundNotificationManager.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/android/src/main/kotlin/net/mullvad/mullvadvpn/service/ForegroundNotificationManager.kt b/android/src/main/kotlin/net/mullvad/mullvadvpn/service/ForegroundNotificationManager.kt
index 733a885b09..aabd9771a3 100644
--- a/android/src/main/kotlin/net/mullvad/mullvadvpn/service/ForegroundNotificationManager.kt
+++ b/android/src/main/kotlin/net/mullvad/mullvadvpn/service/ForegroundNotificationManager.kt
@@ -252,7 +252,7 @@ class ForegroundNotificationManager(
PendingIntent.getActivity(service, 1, intent, PendingIntent.FLAG_UPDATE_CURRENT)
val builder = NotificationCompat.Builder(service, CHANNEL_ID)
- .setSmallIcon(R.drawable.notification)
+ .setSmallIcon(R.drawable.small_logo_black)
.setColor(badgeColor)
.setContentTitle(service.getString(notificationText))
.setContentIntent(pendingIntent)