Browse Source

Show new error message even if it is the same as the last

Malte Veerman 6 years ago
parent
commit
73ba7cb023
1 changed files with 1 additions and 1 deletions
  1. 1 1
      import/src/guibase.cpp

+ 1 - 1
import/src/guibase.cpp

@@ -259,7 +259,7 @@ void GUIBase::reset()
 
 void GUIBase::handleError(const QString &error, bool critical)
 {
-    if (error.isEmpty() || error == m_error)
+    if (error.isEmpty())
         return;
 
     m_error = error;