summaryrefslogtreecommitdiffstats
path: root/api
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@users.noreply.github.com>2019-06-23 21:31:56 +0200
committerGitHub <noreply@github.com>2019-06-23 21:31:56 +0200
commit75ddbc8851c8227baad4e2f1d120785090d5e992 (patch)
treecfe3af77938b37837627afa0e3d494f8cf0b5eb1 /api
parent2f1d31cf43df796a267c2ae32c8ce16be269f698 (diff)
parent1ed84eddd53cfd7e21b96a2f5e55e07d448e2482 (diff)
downloadMultiMC-75ddbc8851c8227baad4e2f1d120785090d5e992.tar
MultiMC-75ddbc8851c8227baad4e2f1d120785090d5e992.tar.gz
MultiMC-75ddbc8851c8227baad4e2f1d120785090d5e992.tar.lz
MultiMC-75ddbc8851c8227baad4e2f1d120785090d5e992.tar.xz
MultiMC-75ddbc8851c8227baad4e2f1d120785090d5e992.zip
Merge pull request #2705 from Janrupf/feature/fix_external_deletion_interaction
GH-2515 Save instance ID before display dialog
Diffstat (limited to 'api')
-rw-r--r--api/logic/InstanceList.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/api/logic/InstanceList.cpp b/api/logic/InstanceList.cpp
index af4e85cf..c713b626 100644
--- a/api/logic/InstanceList.cpp
+++ b/api/logic/InstanceList.cpp
@@ -234,7 +234,7 @@ void InstanceList::deleteInstance(const InstanceId& id)
auto inst = getInstanceById(id);
if(!inst)
{
- qDebug() << "Cannot delete instance" << id << " No such instance is present.";
+ qDebug() << "Cannot delete instance" << id << ". No such instance is present (deleted externally?).";
return;
}