Skip to content
This repository has been archived by the owner on Jul 22, 2024. It is now read-only.

Remove the version check, always show if it's not been displayed before #2282

Merged
merged 1 commit into from
Nov 15, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ public void onWindowVideoAvailabilityChanged(@NonNull WindowWidget aWindow) {
addWidgets(Arrays.asList(mRootWidget, mNavigationBar, mKeyboard, mTray));

// Show the what's upp dialog if we haven't showed it yet and this is v6.
if (!SettingsStore.getInstance(this).isWhatsNewDisplayed() && BuildConfig.VERSION_NAME.equals("6")) {
if (!SettingsStore.getInstance(this).isWhatsNewDisplayed()) {
final WhatsNewWidget whatsNew = new WhatsNewWidget(this);
whatsNew.setLoginOrigin(Accounts.LoginOrigin.NONE);
whatsNew.getPlacement().parentHandle = mWindows.getFocusedWindow().getHandle();
Expand Down