Add star subscription indicators to sharing settings
This commit is contained in:
@@ -30,7 +30,10 @@ let submit = async e => {
|
||||
|
||||
if (single_or_all === "all") {
|
||||
list.files.forEach(file => {
|
||||
files.push(file.id)
|
||||
// Only report files which have not been blocked yet
|
||||
if (file.abuse_type !== "") {
|
||||
files.push(file.id)
|
||||
}
|
||||
})
|
||||
} else {
|
||||
files.push(file.id)
|
||||
|
@@ -95,7 +95,11 @@ const fullscreen = () => {
|
||||
{#if !video_reload}
|
||||
<div class="container">
|
||||
|
||||
{#if file.mime_type === "video/x-matroska" || file.mime_type === "video/quicktime"}
|
||||
{#if
|
||||
file.mime_type === "video/x-matroska" ||
|
||||
file.mime_type === "video/quicktime" ||
|
||||
file.mime_type === "video/x-ms-asf"
|
||||
}
|
||||
<div class="compatibility_warning">
|
||||
This video file type is not compatible with every web
|
||||
browser. If the video fails to play you can try downloading
|
||||
|
Reference in New Issue
Block a user