diff options
-rw-r--r-- | src/shared/Util.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/shared/Util.cpp b/src/shared/Util.cpp index c0c8dc62b9d..41ed9c0fa8b 100644 --- a/src/shared/Util.cpp +++ b/src/shared/Util.cpp @@ -158,6 +158,9 @@ void stripLineInvisibleChars(std::string &str) if(wpos < str.size()) str.erase(wpos,str.size()); + if(str.find("|TInterface")!=std::string::npos) + str.clear(); + } std::string secsToTimeString(uint32 timeInSecs, bool shortText, bool hoursOnly) |