mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
do not display downloads of protocol "data:"
This commit is contained in:
parent
fefe69f9a5
commit
70b8e214a9
@ -238,6 +238,9 @@ display_download(struct terminal *term, struct file_download *file_download,
|
||||
if (!is_in_downloads_list(file_download))
|
||||
return;
|
||||
|
||||
if (file_download->uri->protocol == PROTOCOL_DATA)
|
||||
return;
|
||||
|
||||
#ifdef CONFIG_BITTORRENT
|
||||
#define DOWNLOAD_WIDGETS_COUNT 5
|
||||
#else
|
||||
|
Loading…
Reference in New Issue
Block a user