Merge pull request #13946 from roxanneskelly/featuredStories

For stories, use the action string for notifications instead of a hard-coded value.
This commit is contained in:
Roxanne Skelly 2018-09-10 14:25:03 -07:00 committed by GitHub
commit c7b07c8f27
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 + " in " + story.place_name + ". Open GOTO to join them.";
Window.displayAnnouncement(message);
didNotify = true;
});