From eaa87e446ea295ecaaf240a523eb3cab5de000fe Mon Sep 17 00:00:00 2001 From: Jeroen Smeets Date: Mon, 15 May 2017 09:39:19 +0200 Subject: [PATCH] fixed: user avatar not clickable --- 11t.unoproj | 4 ++-- Classes/Class.Post.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/11t.unoproj b/11t.unoproj index 7c405a6..b91aac7 100644 --- a/11t.unoproj +++ b/11t.unoproj @@ -14,8 +14,8 @@ "Title": "11t", "Description": "An app to connect to Mastodon", "Copyright": "This code has an MIT license. Run with it!", - "Version": "1.2", - "VersionCode": 27, + "Version": "1.3", + "VersionCode": 28, "Mobile": { "Orientations": "Portrait" }, diff --git a/Classes/Class.Post.js b/Classes/Class.Post.js index 74cfbc2..6d0351b 100644 --- a/Classes/Class.Post.js +++ b/Classes/Class.Post.js @@ -147,14 +147,14 @@ function gotoPost() { function gotoUser() { - router.push( 'home', {}, 'userprofile', { userid: _this.account.value.id } ); + router.push( 'userprofile', { userid: _this.account.value.id } ); } function gotoReblogger() { if ( _this.rebloggerId.value > 0 ) { - router.push( "userprofile", { userid: _this.rebloggerId.value } ); + router.push( 'userprofile', { userid: _this.rebloggerId.value } ); } }