forked from hummypkg/webif
Fix potential format error with queue item containing % #3
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "df-auto-deq-patch"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
If an item is in the queue whose file name contains a %, the following error occurs, causing the item never to be dequeued:
As a result, URLs containing URL-encoded characters (eg
%20
) are never processed by qtube.The file name needs to be passed to
format
as a parameter with format%s
rather than embedding it in the format string, or elselog "[format ...][$q get file]"
.