aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorConfuSomu2023-06-16 17:24:16 -0400
committerConfuSomu2023-06-16 17:24:16 -0400
commita01366aed10563517f7bd9cde439b250bec7710d (patch)
tree08976d7cb6f340d660f001ebd1a40bfd48dc440e /src
parenta0f8666c7602cc0f202aa2c56f722aa1bff44e74 (diff)
downloadActorViewer-a01366aed10563517f7bd9cde439b250bec7710d.tar
ActorViewer-a01366aed10563517f7bd9cde439b250bec7710d.tar.gz
ActorViewer-a01366aed10563517f7bd9cde439b250bec7710d.zip
Clarify with comment Archive::find_attachment_dir
Diffstat (limited to 'src')
-rw-r--r--src/archive_parser.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/archive_parser.cpp b/src/archive_parser.cpp
index 8c54a55..97858c6 100644
--- a/src/archive_parser.cpp
+++ b/src/archive_parser.cpp
@@ -369,9 +369,10 @@ void Archive::find_attachment_dir(QString example_attachment) {
attachment_dir_have_to_find = false;
if (not attachment_dir.exists())
- // This shouldn't happen, but log it in case'
+ // This shouldn't happen, but log it in case
qDebug() << "Attachment dir does not exist!" << attachment_dir.canonicalPath();
return;
}
}
+ // If the attachment directory wasn't found, it will be searched for next attachment url parsing as attachment_dir_have_to_find wasn't touched (and is still true)
}