Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Neto committed Aug 15, 2024
1 parent 6cbfef7 commit ecc192d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions view/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -908,8 +908,11 @@ function removeQueueItem(id) {
}
title += '<br><span class="label label-success fileSize" >' + row.fileInfo[index].text + '</span>';
}

title += '<br>' + row.title;
var filename = row.title;
if (filename.startsWith("original_v_")) {
filename = '<a href="' + row.streamer + 'video/' + filename + '" target="_blank"></a>';
}
title += '<br>' + filename;


return title;
Expand Down

0 comments on commit ecc192d

Please sign in to comment.