Skip to content

Commit

Permalink
Fix "out of region" matches
Browse files Browse the repository at this point in the history
  • Loading branch information
mapomatic committed Nov 10, 2024
1 parent 9a77b33 commit 5ea1ad4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions WME-Place-Harmonizer.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ==UserScript==
// @name WME Place Harmonizer Beta
// @namespace WazeUSA
// @version 2024.10.27.000
// @version 2024.11.09.000
// @description Harmonizes, formats, and locks a selected place
// @author WMEPH Development Group
// @include /^https:\/\/(www|beta)\.waze\.com\/(?!user\/)(.{2,6}\/)?editor\/?.*$/
Expand Down Expand Up @@ -1491,7 +1491,6 @@
// if (!matchInfo.allowMultiMatch) {
// return [pnhEntry];
// }
matchInRegion = true;
if (matchInfo.matchOutOfRegion) {
// PNH match found (once true, stays true)
matchOutOfRegion = true;
Expand All @@ -1501,6 +1500,7 @@
// temp order number for approval return
pnhOrderNum.push(pnhEntry.order);
} else {
matchInRegion = true;
matchPNHRegionData.push(pnhEntry);
}
}
Expand Down

0 comments on commit 5ea1ad4

Please sign in to comment.