1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-30 21:55:24 +00:00
profanity/tests/unittests/tools
IsaacM88 d043d53948 Fix duplicate download IDs.
Fixes https://github.com/profanity-im/profanity/issues/1794

Explanation
The problem is the download's identifier. Downloads are given an ID so they can be referenced later when their progress changes. Currently, the download's ID is the download's URL. When you download the same file twice, you have two downloads with the same ID. Download progress updates are shown on the first of both downloads with the same ID.

Solution
Change the download's ID from its URL to a random number. A random ID is generated when get_random_string() is called from cmd_funcs.c. Several other functions are updated to cope with the new ID format.
2023-03-09 15:02:26 -07:00
..
stub_aesgcm_download.c Fix duplicate download IDs. 2023-03-09 15:02:26 -07:00
stub_http_download.c Fix duplicate download IDs. 2023-03-09 15:02:26 -07:00
stub_http_upload.c Fix stubs and move some tests to http_common 2020-11-16 21:58:10 +01:00