wsd/Storage.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
New commits: commit b9694c305b07ff52b5659d5d4b7a0e6ecbea5487 Author: Tor Lillqvist <[email protected]> AuthorDate: Wed Nov 28 12:40:52 2018 +0200 Commit: Tor Lillqvist <[email protected]> CommitDate: Wed Nov 28 12:41:43 2018 +0200 Adapt after ed9c756c9ed9150f361340a2eb4dade9ec405935 Change-Id: Ide7ab1544039d11d478c30cc8fd9c09b1d1f6894 diff --git a/wsd/Storage.cpp b/wsd/Storage.cpp index a42534eaa..7ed86bc3c 100644 --- a/wsd/Storage.cpp +++ b/wsd/Storage.cpp @@ -328,10 +328,10 @@ std::string LocalStorage::loadStorageFileToLocal(const Authorization& /*auth*/) #else // MOBILEAPP // In the mobile app we use no jail - _jailedFilePath = _uri.getPath(); - _isLoaded = true; + setRootFilePath(getUri().getPath()); + setLoaded(true); - return _jailedFilePath; + return getRootFilePath(); #endif } _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
