From bb8d9c5cf0a18845b4ffcdfe3d03eb30382327ae Mon Sep 17 00:00:00 2001 From: Roxanne Skelly Date: Wed, 5 Sep 2018 16:50:08 -0700 Subject: [PATCH] For stories, base the notification popups off of the action_string instead of a hard-coded value. --- scripts/system/tablet-goto.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/system/tablet-goto.js b/scripts/system/tablet-goto.js index 46ddeb2bab..80b4e67c43 100644 --- a/scripts/system/tablet-goto.js +++ b/scripts/system/tablet-goto.js @@ -127,7 +127,7 @@ return; } stories[story.id] = story; - var message = story.username + " says something is happening in " + story.place_name + ". Open GOTO to join them."; + var message = story.username + " " + story.action_string + " " + story.place_name + ". Open GOTO to join them."; Window.displayAnnouncement(message); didNotify = true; });