diff options
| -rw-r--r-- | src/Companion.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Companion.cpp b/src/Companion.cpp index ce915cb..75c077a 100644 --- a/src/Companion.cpp +++ b/src/Companion.cpp @@ -441,7 +441,7 @@ bool Companion::NodeHasChanges(const std::string& path) { if(this->gHashNode[path]) { auto entry = GetSafeNode<YAML::Node>(this->gHashNode, path); - const auto hash = GetSafeNode<std::string>(entry, "hash"); + const auto hash = GetSafeNode<std::string>(entry, "hash", "no-hash"); auto modes = GetSafeNode<YAML::Node>(entry, "extracted"); auto extracted = GetSafeNode<bool>(modes, ExportTypeToString(this->gConfig.exporterType)); |
