From 0c8bcdbd483b6900a3d59cf4b24985ce1347d57c Mon Sep 17 00:00:00 2001 From: Natsumi-sama Date: Mon, 19 Oct 2020 19:45:03 +1300 Subject: [PATCH] Remove current user from shared feed --- html/src/app.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/html/src/app.js b/html/src/app.js index 4dfb66d2..fcf227af 100644 --- a/html/src/app.js +++ b/html/src/app.js @@ -4474,6 +4474,9 @@ CefSharp.BindObjectAsync( type: String(log[1]), data: String(log[2]) }; + if (ctx.data === API.currentUser.displayName) { + continue; + } if (ctx.type === 'Location') { var tag = ctx.data; if (tag.endsWith(':')) {