mirror of
https://github.com/parchlinux/calamares.git
synced 2025-06-25 00:18:22 -04:00
[libcalamares] Fix stringification of broken instance keys
This commit is contained in:
parent
70fc480c56
commit
4970c328fa
1 changed files with 5 additions and 1 deletions
|
@ -90,7 +90,11 @@ public:
|
|||
|
||||
QString toString() const
|
||||
{
|
||||
return first + '@' + second;
|
||||
if ( isValid() )
|
||||
{
|
||||
return first + '@' + second;
|
||||
}
|
||||
return QString();
|
||||
}
|
||||
|
||||
private:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue