We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd799f4 commit 27f459aCopy full SHA for 27f459a
backend/epub/epub-document.c
@@ -352,7 +352,11 @@ epub_document_save (EvDocument *document,
352
{
353
EpubDocument *epub_document = EPUB_DOCUMENT (document);
354
355
- return ev_xfer_uri_simple (epub_document->archivename, uri, error);
+ gchar *source_uri = g_filename_to_uri (epub_document->archivename, NULL, error);
356
+ if (source_uri == NULL)
357
+ return FALSE;
358
+
359
+ return ev_xfer_uri_simple (source_uri, uri, error);
360
}
361
362
static int
0 commit comments