|
|
@@ -354,6 +354,15 @@ async function getActivityIdsByEntryTile(){
|
|
|
return idsList;
|
|
|
}
|
|
|
|
|
|
+function checkKeysInText(keyList, text){
|
|
|
+ for(let key of keyList){
|
|
|
+ if(text.indexOf(key) > -1){
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return false;
|
|
|
+}
|
|
|
+
|
|
|
function readMySeriesOwnCntFakeData() {
|
|
|
gItemCntRwDict = {};
|
|
|
let text = magicJS.data.read(HbcpreConstKey.myOwnSeriesCntFakeData, null);
|