From 7ef9056537e049b5439abc5d44905e14c43d77b3 Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Mon, 20 Apr 2020 22:41:02 -0600 Subject: [PATCH 1/3] Update RemotePost component, fix missing like button on comments --- app/Http/Controllers/InternalApiController.php | 2 +- resources/assets/js/components/RemotePost.vue | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/app/Http/Controllers/InternalApiController.php b/app/Http/Controllers/InternalApiController.php index 1706b73ce..9d127ba07 100644 --- a/app/Http/Controllers/InternalApiController.php +++ b/app/Http/Controllers/InternalApiController.php @@ -437,7 +437,7 @@ class InternalApiController extends Controller $status = Status::whereProfileId($user->id) ->whereNull('reblog_of_id') - ->whereVisibility('public') + ->whereIn('visibility', ['public', 'unlisted']) ->findOrFail($statusId); $template = $status->in_reply_to_id ? 'status.reply' : 'status.remote'; return view($template, compact('user', 'status')); diff --git a/resources/assets/js/components/RemotePost.vue b/resources/assets/js/components/RemotePost.vue index 46c9f976a..4a0fad147 100644 --- a/resources/assets/js/components/RemotePost.vue +++ b/resources/assets/js/components/RemotePost.vue @@ -166,6 +166,7 @@ +

From 03794f0ecfe962ef4f9239b019cedeee77ccdd2e Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Mon, 20 Apr 2020 22:42:10 -0600 Subject: [PATCH 2/3] Update compiled assets --- public/js/rempos.js | Bin 60050 -> 60219 bytes public/mix-manifest.json | Bin 1939 -> 1939 bytes 2 files changed, 0 insertions(+), 0 deletions(-) diff --git a/public/js/rempos.js b/public/js/rempos.js index 19dc5337a39e9b19e06f753797b3c4cdd059e913..fb59402077c25004c4ad15291de163fb1514ecbf 100644 GIT binary patch delta 414 zcmbPqm3j9y<_*6EHk%7><6{X-%5NvXfUU$WCrikmo=Wh(K_-6?G6Cd&L+8XR+dJ z1jkLu0>NohvP5u>E14lUtjb0Rj=l0~1m}~oJ%VGY5{=;4D@sk?rjmmY&{9QGTBvHw zrj(-XX`(dwzkuB4HRiomETt9!$(wD9YBeSwTzF~o<5}%$nlR5P>ExB>ZPQn zC6?xt*yih{RutqHl@!L{S*i*EYovt= delta 345 zcmdmejd{{l<_*6EnB78xCKo7Z@K^YFhAU}W7whF|Bx>p=$puE%2!YK;Itb2lqZkCo+jusD^Ul};!O=6Z zL~!y=%n+QlCPoO(bCcBw&MZ@V1m~e?G=k$|)`s9*GDA`(X>PoEqx=)W%|7NEtyqBJ z;I)~ts8)lsAiuaoH#aq}bn?TE@|*ou@xPMS~^YTOXOp}$4+OU9vY@&k{IFu&F Lb#9J3dRG+yUPE$S diff --git a/public/mix-manifest.json b/public/mix-manifest.json index 8fbe6226733ee259ffbd2c8758bceee7d99100ff..6c4839c575ecc1967f7320116cc3525954cf6e19 100644 GIT binary patch delta 33 pcmbQtKbe2Sb5;>EGfUGXixd+JGYbm~<3wYVwB(e{zgcH60syaA3X1>$ delta 33 pcmbQtKbe2Sb5;?Hl*F_oWAn6>MAKw*OLOxi%fz(JzgcH60sz7T3v&Pf From ab7b8cd828ffeacf4fc16252654e220c6e96d17a Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Mon, 20 Apr 2020 22:42:18 -0600 Subject: [PATCH 3/3] Update changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c01b7379..9d35654a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ - Updated PostComponent.vue, fix load more comments button ([847599ad](https://github.com/pixelfed/pixelfed/commit/847599ad)) - Updated 2FA Checkpoint, add username + logout button and numeric inputmode ([26affb11](https://github.com/pixelfed/pixelfed/commit/26affb11)) - Updated RemoteProfile, fix missing content warnings ([e487527a](https://github.com/pixelfed/pixelfed/commit/e487527a)) +- Updated RemotePost component, fix missing like button on comments ([7ef90565](https://github.com/pixelfed/pixelfed/commit/7ef90565)) ## [v0.10.9 (2020-04-17)](https://github.com/pixelfed/pixelfed/compare/v0.10.8...v0.10.9)