X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=plugins%2FMeteor%2Fmeteorupdater.js;h=82594d91c75b7ab401235d42b50d67e475788369;hb=87ff03890e6512bf4cf336c5583382e22bb75414;hp=a7c87330c9bfc4ff69796984e74af8080f047e26;hpb=e6cbe3a26938ca8d88d44bacc6c40ba09f5f1fd1;p=quix0rs-gnu-social.git diff --git a/plugins/Meteor/meteorupdater.js b/plugins/Meteor/meteorupdater.js index a7c87330c9..82594d91c7 100644 --- a/plugins/Meteor/meteorupdater.js +++ b/plugins/Meteor/meteorupdater.js @@ -8,15 +8,15 @@ var MeteorUpdater = function() init: function(server, port, timeline) { + var screen_name; + Meteor.callbacks["process"] = function(data) { var d = JSON.parse(data); - - $user_url = $('address .url')[0].href+d['user']['screen_name']; + screen_name = d['user']['screen_name']; if (timeline == 'public' || - $user_url+'/all' == window.location.href || - $user_url == window.location.href) { - + $('address .url')[0].href+screen_name+'/all' == window.location.href || + $('address .url')[0].href+screen_name == window.location.href) { RealtimeUpdate.receive(d); } };