From c678f07d147c5e9244fad2ac139bac2717aa4ccc Mon Sep 17 00:00:00 2001 From: Natsumi-sama Date: Sun, 8 Nov 2020 01:08:17 +1300 Subject: [PATCH] Hide self from shared feed (#102) this code may not work, but i'll fix yo --- html/src/app.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/html/src/app.js b/html/src/app.js index a1bb0336..1b3ed4f6 100644 --- a/html/src/app.js +++ b/html/src/app.js @@ -4529,6 +4529,10 @@ import webApiService from './service/webapi.js'; var gameLogTableData = null; + if (API.currentUser.displayName === args[0]) { + continue; + } + switch (type) { case 'auth': gameLogContext.loginProvider = args[0];