fix: properly emit aborted instead of failed

Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com>
This commit is contained in:
Octol1ttle 2026-02-02 16:37:30 +05:00
parent 625f0060a1
commit 7bcd2dd768
No known key found for this signature in database
GPG key ID: B77C34313AEE1FFF
9 changed files with 11 additions and 11 deletions

View file

@ -180,7 +180,7 @@ bool LaunchTask::abort()
return true;
case LaunchTask::NotStarted: {
state = LaunchTask::Aborted;
emitFailed("Aborted");
emitAborted();
return true;
}
case LaunchTask::Running: