]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - plugins/Meteor/meteorupdater.js
Mapstraction plugin fix: set icon dimensions (24x24 px); Google Maps provider otherwi...
[quix0rs-gnu-social.git] / plugins / Meteor / meteorupdater.js
index de01d430a1220fa7830148ead1a8d9c3ef874d3e..cdd1d63fabb5f31adaea7da8e2af81b848e3d63b 100644 (file)
@@ -1,6 +1,4 @@
 // Update the local timeline from a Meteor server
-// XXX: If @a is subscribed to @b, @a should get @b's notices in @a's Personal timeline.
-//      Do Replies timeline.
 
 var MeteorUpdater = function()
 {
@@ -8,17 +6,8 @@ var MeteorUpdater = function()
 
           init: function(server, port, timeline)
           {
-               var screen_name;
-
                Meteor.callbacks["process"] = function(data) {
-                    var d = JSON.parse(data);
-                    screen_name = d['user']['screen_name'];
-
-                    if (timeline == 'public' ||
-                        $('address .url')[0].href+screen_name+'/all' == window.location.href ||
-                        $('address .url')[0].href+screen_name == window.location.href) {
-                        RealtimeUpdate.receive(d);
-                    }
+                    RealtimeUpdate.receive(JSON.parse(data));
                };
 
                Meteor.host = server;