Skip to content

Commit

Permalink
fix: minor mistake in regexp.
Browse files Browse the repository at this point in the history
 (#250)
  • Loading branch information
chirs241097 authored and BLumia committed Jul 11, 2019
1 parent a5ddff7 commit fdb62c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fileoperations/filejob.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2610,7 +2610,7 @@ QString FileJob::getXorrisoErrorMsg(const QStringList &msg)
if (msgs.contains("file object exists and may not be overwritten") && ovrxm.hasMatch()) {
return tr("%1 is a duplicate file.").arg(ovrxm.captured(1));
}
if (msgs.contains(QRegularExpression("Image size [0-9s]* exceeds free space on media [0-9s]"))) {
if (msgs.contains(QRegularExpression("Image size [0-9s]* exceeds free space on media [0-9s]*"))) {
return tr("Insufficient disc space.");
}
if (msgs.contains("Lost connection to drive")) {
Expand Down

0 comments on commit fdb62c6

Please sign in to comment.