Skip to content

Commit

Permalink
propagate the results from ShareExport::intoContainer
Browse files Browse the repository at this point in the history
this is a fix for an obvious regression. there was some refactoring
going on around here since the 2.4.3 release, and the return value of
ShareExport::intoContainer has since been neglected. with this change
the info banner showing errors/warnings/info/success after exporting a
database tree with KeeShare is shown again.
  • Loading branch information
schlimmchen authored and droidmonkey committed Oct 24, 2019
1 parent 34bbf8b commit 957ba90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/keeshare/ShareObserver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ QList<ShareObserver::Result> ShareObserver::exportShares()
const auto& reference = it.value().first();
const QString resolvedPath = resolvePath(reference.config.path, m_db);
m_fileWatcher->ignoreFileChanges(resolvedPath);
ShareExport::intoContainer(resolvedPath, reference.config, reference.group);
results << ShareExport::intoContainer(resolvedPath, reference.config, reference.group);
m_fileWatcher->observeFileChanges(true);
}
return results;
Expand Down

0 comments on commit 957ba90

Please sign in to comment.