mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-08-19 21:03:21 -07:00
URI encode download logfile parameter
This commit is contained in:
parent
3d2959ee51
commit
c90469b0b7
1 changed files with 2 additions and 2 deletions
|
@ -453,12 +453,12 @@
|
|||
|
||||
$("#download-tautullilog").click(function () {
|
||||
var logfile = $(".tab-pane.active").data('logfile');
|
||||
window.location.href = "download_log?logfile=" + logfile;
|
||||
window.location.href = "download_log?logfile=" + window.encodeURIComponent(logfile);
|
||||
});
|
||||
|
||||
$("#download-plexserverlog").click(function () {
|
||||
var logfile = $("option:selected", "#plex-log-files").val();
|
||||
window.location.href = "download_plex_log?logfile=" + logfile;
|
||||
window.location.href = "download_plex_log?logfile=" + window.encodeURIComponent(logfile);
|
||||
});
|
||||
|
||||
$("#clear-notify-logs").click(function () {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue