Skip to content

Commit

Permalink
Fix recursive paths not being made.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mysticial committed Nov 29, 2024
1 parent da4834d commit 5a063bd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ SendableErrorReport::SendableErrorReport()
: PROGRAM_NAME + " (" + PROGRAM_VERSION + ")"
)
{
QDir().mkdir(QString::fromStdString(m_directory));
QDir().mkpath(QString::fromStdString(m_directory));
}
SendableErrorReport::SendableErrorReport(
Logger* logger,
Expand Down

0 comments on commit 5a063bd

Please sign in to comment.