From cea263ca3322fc1f1928d246a2bc2d16cbf1cd59 Mon Sep 17 00:00:00 2001 From: Natsumi Date: Sun, 8 May 2022 02:11:30 +1200 Subject: [PATCH] Fix Previous Instances dialog timers 2 --- html/src/repository/database.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/src/repository/database.js b/html/src/repository/database.js index eaad4fd0..3f706111 100644 --- a/html/src/repository/database.js +++ b/html/src/repository/database.js @@ -1284,7 +1284,7 @@ class Database { }; data.set(row.location, row); }, - `SELECT gamelog_join_leave.created_at, gamelog_join_leave.location, gamelog_join_leave.time, gamelog_location.world_name + `SELECT DISTINCT gamelog_join_leave.created_at, gamelog_join_leave.location, gamelog_join_leave.time, gamelog_location.world_name FROM gamelog_join_leave INNER JOIN gamelog_location ON gamelog_join_leave.location = gamelog_location.location WHERE user_id = @userId OR display_name = @displayName