In src/utils.c:
> @@ -1788,6 +1788,9 @@ void utils_tidy_path(gchar *filename) > const gchar *needle; > gboolean preserve_double_backslash = FALSE; > > + if (utils_is_uri(filename)) > + return;
what about skipping the scheme instead? around the line of a sane version of filename = strstr(filename, "://") + 3
.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub