Skip to content

Commit

Permalink
Fix bypass logic on What's New popup
Browse files Browse the repository at this point in the history
  • Loading branch information
1hitsong committed Oct 26, 2024
1 parent cea42d6 commit eead843
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/Main.bs
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ sub Main (args as dynamic) as void
end if

' Bypass What's New popup if deep linking arguments were passed
if not isValidAndNotEmpty(args.mediaType) or not isValidAndNotEmpty(args.contentId)
if isValidAndNotEmpty(args.mediaType) and isValidAndNotEmpty(args.contentId)
set_user_setting("LastRunVersion", m.global.app.version)
end if

Expand Down

0 comments on commit eead843

Please sign in to comment.