From 18bdc6d30b8a02144cce34c9dd00b84395814eae Mon Sep 17 00:00:00 2001 From: k1792539 Date: Tue, 15 Aug 2017 16:07:18 +0200 Subject: [PATCH] Fix --- mediaserver/platformcode/template/js/vars.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mediaserver/platformcode/template/js/vars.js b/mediaserver/platformcode/template/js/vars.js index 476630d9..bb54ce7e 100644 --- a/mediaserver/platformcode/template/js/vars.js +++ b/mediaserver/platformcode/template/js/vars.js @@ -68,7 +68,7 @@ var nav_history = { this.states[this.current].end = new Date().getTime(); this.states[this.current].data = data; this.states[this.current].category = category; - this.states[this.current].url = url; + this.states[this.current].source_url = url; this.confirmed = true; if (settings.builtin_history && !this.from_nav) { if (this.current > 0) { @@ -87,7 +87,7 @@ var nav_history = { this.states[this.current].end = new Date().getTime(); this.states[this.current].data = data; this.states[this.current].category = category; - this.states[this.current].url = url; + this.states[this.current].source_url = url; this.states = this.states.slice(0, this.current + 1); } this.from_nav = false; @@ -118,7 +118,7 @@ var nav_history = { if (this.states[this.current].end - this.states[this.current].start > this.cache) { document.getElementById("itemlist").innerHTML = this.states[this.current].data.join(""); set_category(this.states[this.current].category) - set_original_url(this.states[this.current].url) + set_original_url(this.states[this.current].source_url) if (this.states[this.current].focus >= 0) { document.getElementById("itemlist").children[this.states[this.current].focus].children[0].focus(); }