Color nav bar to match unmute in release note channel.

This commit is contained in:
Cody Henthorne
2022-08-08 14:17:28 -04:00
parent 5164a44ee8
commit 756b926f6f
2 changed files with 7 additions and 1 deletions

View File

@@ -1046,6 +1046,8 @@ public class Recipient {
public @Nullable ChatWallpaper getWallpaper() {
if (wallpaper != null) {
return wallpaper;
} else if (isReleaseNotes()) {
return null;
} else {
return SignalStore.wallpaper().getWallpaper();
}