pmcf 2.59.5 → 2.59.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmcf",
3
- "version": "2.59.5",
3
+ "version": "2.59.6",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -162,7 +162,7 @@ export class KeaService extends Service {
162
162
  const peers = async family =>
163
163
  (
164
164
  await Array.fromAsync(
165
- network.findServices({ type: "dhcp", priority: ">=100" })
165
+ network.findServices({ type: "dhcp", priority: ">=" + (this.priority < 100 ? this.priority : 100) })
166
166
  )
167
167
  )
168
168
  .sort(sortDescendingByPriority)