|
From: <cn...@us...> - 2021-01-21 04:45:21
|
Revision: 1137
http://sourceforge.net/p/seq/svn/1137
Author: cn187
Date: 2021-01-21 04:45:13 +0000 (Thu, 21 Jan 2021)
Log Message:
-----------
Ignore _progress suffix on zone shortnames
Modified Paths:
--------------
showeq/trunk/src/zonemgr.cpp
Modified: showeq/trunk/src/zonemgr.cpp
===================================================================
--- showeq/trunk/src/zonemgr.cpp 2021-01-21 04:32:15 UTC (rev 1136)
+++ showeq/trunk/src/zonemgr.cpp 2021-01-21 04:45:13 UTC (rev 1137)
@@ -638,6 +638,12 @@
// LDoN likes to append a _262 to the zonename. Get rid of it.
QRegExp rx("_\\d+$");
m_shortZoneName.replace( rx, "");
+
+ // 2020-01-20 patch seems to have added _progress suffix to certain
+ // zone names, presumably for the progression servers. This happens in
+ // ToV DZs for sure, but there may be others.
+ QRexExp rz("_progress$");
+ m_shortZoneName.replace(rz, "");
}
m_longZoneName = zoneNew->longName;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|