Skip to content

Commit

Permalink
Fix: add missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
jcorporation committed Jan 31, 2023
1 parent a183e65 commit 491eded
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htdocs/js/state.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ function parseStats(obj) {
document.getElementById('mpdstatsMympd_uptime').textContent = fmtDuration(obj.result.myMPDuptime);
document.getElementById('mpdstatsDbUpdated').textContent = fmtDate(obj.result.dbUpdated);
document.getElementById('mympdVersion').textContent = obj.result.mympdVersion;
document.getElementById('myMPDuri').textContent = obj.result.myMPDuri
document.getElementById('myMPDuri').textContent = obj.result.myMPDuri;

const mpdInfoVersionEl = document.getElementById('mpdInfoVersion');
elClear(mpdInfoVersionEl);
Expand Down

0 comments on commit 491eded

Please sign in to comment.