From 31a6c627af279d2413435830ad88e2b495705c88 Mon Sep 17 00:00:00 2001 From: JonnyWong16 Date: Thu, 20 Feb 2020 11:30:17 -0800 Subject: [PATCH] Fix incorrect source=history in info page URL for active sessions on history table --- data/interfaces/default/js/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/interfaces/default/js/script.js b/data/interfaces/default/js/script.js index 6ddac2f5..c4cd94dd 100644 --- a/data/interfaces/default/js/script.js +++ b/data/interfaces/default/js/script.js @@ -762,7 +762,7 @@ function info_page(rating_key, guid, history, live) { params.rating_key = rating_key; } - if (history != null) { params.source = 'history'; } + if (history) { params.source = 'history'; } return params; }