Browse Source
Merge pull request #628 from briansorahan/626-RackWidget-error-message-fix
fix error message in RackWidget::fromJson
tags/v0.6.0
Andrew Belt
GitHub
6 years ago
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/app/RackWidget.cpp
|
|
@@ -263,7 +263,7 @@ void RackWidget::fromJson(json_t *rootJ) { |
|
|
|
} |
|
|
|
|
|
|
|
if (!model) { |
|
|
|
message += stringf("Could not find module \"%s\" in plugin \"%s\"\n", pluginSlug.c_str(), modelSlug.c_str()); |
|
|
|
message += stringf("Could not find module \"%s\" in plugin \"%s\"\n", modelSlug.c_str(), pluginSlug.c_str()); |
|
|
|
continue; |
|
|
|
} |
|
|
|
|
|
|
|