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

Commit

Permalink
Remove the version check, always show if it's not been displayed befo…
Browse files Browse the repository at this point in the history
…re (#2282)
  • Loading branch information
keianhzo authored and bluemarvin committed Nov 15, 2019
1 parent eb9f9d0 commit 46f2ef9
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit 46f2ef9

Please sign in to comment.