Push notifications in android agent mobile app show the error 'Please logout of current instance to open link'Issue Push Notifications when clicked on the Android agent mobile app, they show up the error 'Please logout of current instance to open link' This issue occurs if the instance is using a vanity URL.CauseThe script includes 'MobileDeepLinkGenerator' checks for the instance name and generates deep link based on the system property 'instancename' and 'domain name'. When the instance is using a vanity URL, the variable 'deeplinkURL' defined in this script includes will get conflicted with the actual vanity URL and therefore returns the error message ''Please logout of current instance to open link'ResolutionThis issue happens only if the instance is using the vanity URL (meaning if the instance URL is a vanity URL and doesn't have 'service-now.com' in it)NOTE: This only occurs in the Android version of mobile app and iOS isn't impacted.Workaround:1) Go into the MobileDeepLinkGenerator record on the sys_script_include table./sys_script_include.do?sys_id=d52318830ba03300dee1c71437673ac82) Comment out lines 3-5 and line 14.3) Add this to line 15: var deeplinkURL = "https://<vanity_URL>/deeplink";