(08.10.2019, 13:09)Daniel. Wrote: Did you try to clear the cache?
It happens on several tablets (same type with same versions). And I have removed and reinstalled the Wallpanel app. I could try to clear the Android Webview cache to see if that helps.
(15.10.2019, 10:32)fiLLLip Wrote:(08.10.2019, 13:09)Daniel. Wrote: Did you try to clear the cache?
It happens on several tablets (same type with same versions). And I have removed and reinstalled the Wallpanel app. I could try to clear the Android Webview cache to see if that helps.
Downloaded https://play.google.com/store/apps/detai...2&hl=en_US now and testet, and got this error:
EDIT:
Seems to be related to localstorage not being defined?
Code:
//настройки языка
$(function() {
function initLanguage() {
$(document.body).tr();
var lang = localStorage.getItem('core_language'); // Line 260
if (lang) lang = parseJSON(lang);
if (_.isString(lang) && lang.length > 0) {
window.currLang = lang;
lang = lang + '.js';
$.getScript(pathURL + "js/languages/" + lang, function() {
$(document.body).tr();
})
}
$(document.body).tr();
}
initLanguage();
})