mirror of
https://github.com/rkd77/elinks.git
synced 2025-02-02 15:09:23 -05:00
Merge pull request #70 from sgerwk/master
do not display downloads of protocol "data:"
This commit is contained in:
commit
01c232c4e1
@ -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…
x
Reference in New Issue
Block a user