diff options
author | Pedro Algarvio <pedro@algarvio.me> | 2012-02-05 12:00:31 +0100 |
---|---|---|
committer | Pedro Algarvio <pedro@algarvio.me> | 2012-02-05 12:00:31 +0100 |
commit | e8a0cc2daf8cf5b0ad6d1faee53cd5551fa6dfaa (patch) | |
tree | cbf4f57660add66574bc0fceed7c0cd8852fff64 /module/web/media/js/package_ui.js | |
parent | Stop Real-Debrid from returning streaming responses instead of file downloads. (diff) | |
download | pyload-e8a0cc2daf8cf5b0ad6d1faee53cd5551fa6dfaa.tar.xz |
Fix missing error message.
Diffstat (limited to 'module/web/media/js/package_ui.js')
-rw-r--r-- | module/web/media/js/package_ui.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/module/web/media/js/package_ui.js b/module/web/media/js/package_ui.js index 3ea965649..5b329b37a 100644 --- a/module/web/media/js/package_ui.js +++ b/module/web/media/js/package_ui.js @@ -203,6 +203,7 @@ var Package = new Class({ html += "<span class='child_status'>{statusmsg}</span>{error} ".substitute({"statusmsg": link.statusmsg, "error":link.error}); html += "<span class='child_status'>{format_size}</span>".substitute({"format_size": link.format_size}); html += "<span class='child_status'>{plugin}</span> ".substitute({"plugin": link.plugin}); + html += "<span class='child_status'>{url}</span> ".substitute({"url": link.url}); html += "<img title='{{_("Delete Link")}}' style='cursor: pointer;' width='10px' height='10px' src='/media/default/img/delete.png' /> "; html += "<img title='{{_("Restart Link")}}' style='cursor: pointer;margin-left: -4px' width='10px' height='10px' src='/media/default/img/arrow_refresh.png' /></div>"; |