From bf492438eb0b0fbbf29e3812ca8c4a3d792b8581 Mon Sep 17 00:00:00 2001 From: Yuval Adam Date: Tue, 7 Jul 2015 20:24:05 +0300 Subject: Fucking hex conversions --- server/methods.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'server/methods.js') diff --git a/server/methods.js b/server/methods.js index d99728a..81f4d92 100644 --- a/server/methods.js +++ b/server/methods.js @@ -12,10 +12,10 @@ Meteor.methods({ getInstagramProfilePhoto: function () { return Meteor.user().services.instagram.profile_picture; }, - printFinalImage: function(month, year, matrix) { + printFinalImage: function(code) { if (Meteor.userId()) { var username = Meteor.user().services.instagram.username; - console.log('Printing', username, month, year, matrix); + console.log('Printing', username + code); } } }); -- cgit v1.3.1