From 286dd02dad0cc8704d712c7a954252476652ae38 Mon Sep 17 00:00:00 2001 From: jacob1 Date: Sat, 10 Oct 2015 00:32:09 -0400 Subject: [PATCH] Ignore "Unspecified Error" when searching for saves --- src/gui/search/SearchModel.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gui/search/SearchModel.cpp b/src/gui/search/SearchModel.cpp index 16dccd06f4..09b27030ce 100644 --- a/src/gui/search/SearchModel.cpp +++ b/src/gui/search/SearchModel.cpp @@ -149,6 +149,8 @@ void SearchModel::Update() if(!saveList.size()) { lastError = Client::Ref().GetLastError(); + if (lastError == "Unspecified Error") + lastError = ""; } resultCount = thResultCount;