[gnome-documents/wip/lokdocview-rebase: 2/28] lokview: Fix loading	files with spaces in their path
- From: Debarshi Ray <debarshir src gnome org>
 
- To: commits-list gnome org
 
- Cc: 
 
- Subject: [gnome-documents/wip/lokdocview-rebase: 2/28] lokview: Fix loading	files with spaces in their path
 
- Date: Mon,  4 Jan 2016 12:04:48 +0000 (UTC)
 
commit c4bc35d829463e68e56de9d2b93835b917825c15
Author: Bastien Nocera <hadess hadess net>
Date:   Fri Dec 4 15:59:20 2015 +0100
    lokview: Fix loading files with spaces in their path
 src/lokview.js |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/lokview.js b/src/lokview.js
index 22539b7..d3ffb7a 100644
--- a/src/lokview.js
+++ b/src/lokview.js
@@ -114,7 +114,7 @@ const LOKView = new Lang.Class({
 
     _onLoadFinished: function(manager, doc, docModel) {
         if (docModel == null && doc != null) {
-            let location = doc.uri.replace ('file://', '');
+            let [ location, ] = GLib.filename_from_uri (doc.uri);
             this._doc = doc;
             this.view.open_document(location, null, Lang.bind(this, this.open_document_cb), null);
             this._progressBar.show();
[
Date Prev][
Date Next]   [
Thread Prev][
Thread Next]   
[
Thread Index]
[
Date Index]
[
Author Index]