You've already forked ReZygisk
mirror of
https://github.com/PerformanC/ReZygisk.git
synced 2025-09-06 06:37:01 +00:00
This commit fixes the syntax and indentation of the JavaScript code to meet the organization standard.
10 lines
296 B
JavaScript
10 lines
296 B
JavaScript
const errorh_panel = document.getElementById('errorh_panel')
|
|
let sys_error = localStorage.getItem('/system/error')
|
|
|
|
if (!sys_error) {
|
|
localStorage.setItem('/system/error', '')
|
|
|
|
sys_error = localStorage.getItem('/system/error')
|
|
}
|
|
|
|
if (sys_error.length !== 0) errorh_panel.innerHTML = sys_error |