diff options
author | raveit65 <[email protected]> | 2018-03-09 19:10:02 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2018-03-16 18:05:20 +0100 |
commit | 27f459a77080e8ba45ba9f50ee75d879d834a449 (patch) | |
tree | 840a9dc76111494b019a7059046191fd1b37d850 /backend/epub | |
parent | bd799f45f16f30284466dd013abecbe35c9d0695 (diff) | |
download | atril-27f459a77080e8ba45ba9f50ee75d879d834a449.tar.bz2 atril-27f459a77080e8ba45ba9f50ee75d879d834a449.tar.xz |
epub: allow to save epub documents
inspired by:
https://github.com/linuxmint/xreader/commit/63a28f
https://github.com/linuxmint/xreader/issues/165
Diffstat (limited to 'backend/epub')
-rw-r--r-- | backend/epub/epub-document.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/backend/epub/epub-document.c b/backend/epub/epub-document.c index fe483a68..c0fa275b 100644 --- a/backend/epub/epub-document.c +++ b/backend/epub/epub-document.c @@ -352,7 +352,11 @@ epub_document_save (EvDocument *document, { EpubDocument *epub_document = EPUB_DOCUMENT (document); - return ev_xfer_uri_simple (epub_document->archivename, uri, error); + gchar *source_uri = g_filename_to_uri (epub_document->archivename, NULL, error); + if (source_uri == NULL) + return FALSE; + + return ev_xfer_uri_simple (source_uri, uri, error); } static int |