Skip to content

Commit

Permalink
not passing tours, even empty tours, ended up causing a problem in th…
Browse files Browse the repository at this point in the history
…e compiled version of the app, so this passes an empty array when we handle the error response
  • Loading branch information
David D'Amico committed Apr 18, 2014
1 parent ffe4fc1 commit 793ec65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/tap/TourMLParser.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ TapAPI.tourMLParser = {
},
parseTourMLError : function (response) {
TapAPI.tours.tourmlRequests--;
Backbone.trigger('tap.tourml.parsed');
Backbone.trigger('tap.tourml.parsed', []);
},
parseTour: function(data, tourUri) {
this.trigger('willParseTour');
Expand Down

0 comments on commit 793ec65

Please sign in to comment.