mirror of
https://github.com/anthonyaxenov/iptv.git
synced 2024-11-22 05:24:45 +00:00
Предусмотрены ошибки проверки плейлистов
This commit is contained in:
parent
1edf1d8455
commit
acf1f8083f
@ -10,7 +10,7 @@ document.querySelectorAll('tr.pls').forEach((tr) => {
|
|||||||
console.log('[' + id + '] DONE', xhr.response)
|
console.log('[' + id + '] DONE', xhr.response)
|
||||||
el_status.classList.remove('bg-secondary')
|
el_status.classList.remove('bg-secondary')
|
||||||
el_status.innerText = xhr.response.status
|
el_status.innerText = xhr.response.status
|
||||||
el_count.innerText = xhr.response.count
|
el_count.innerText = xhr.response.count ?? 0
|
||||||
switch (xhr.response.status) {
|
switch (xhr.response.status) {
|
||||||
case 'online':
|
case 'online':
|
||||||
el_status.classList.add('bg-success')
|
el_status.classList.add('bg-success')
|
||||||
@ -22,6 +22,9 @@ document.querySelectorAll('tr.pls').forEach((tr) => {
|
|||||||
el_status.classList.add('bg-danger')
|
el_status.classList.add('bg-danger')
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
|
if (xhr.response.error) {
|
||||||
|
el_status.title = '[' + xhr.response.error.code + '] ' + xhr.response.error.message
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
xhr.onerror = () => {
|
xhr.onerror = () => {
|
||||||
|
@ -11,6 +11,11 @@
|
|||||||
Однако названия каналов могут отображаться некорректно, причём не только здесь, но и в плеере.
|
Однако названия каналов могут отображаться некорректно, причём не только здесь, но и в плеере.
|
||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
{% if (error) %}
|
||||||
|
<div class="alert alert-danger small" role="alert">
|
||||||
|
Ошибка плейлиста: [{{ error.code }}] {{ error.message }}
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
@ -57,7 +62,7 @@
|
|||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-4">
|
<div class="col-md-4">
|
||||||
<h4>Список каналов ({{ count }})</h4>
|
<h4>Список каналов ({{ count ?? 0 }})</h4>
|
||||||
<div class="overflow-auto" style="max-height: 350px;">
|
<div class="overflow-auto" style="max-height: 350px;">
|
||||||
<table class="table table-dark table-hover small">
|
<table class="table table-dark table-hover small">
|
||||||
<tbody>
|
<tbody>
|
||||||
|
Loading…
Reference in New Issue
Block a user