fix: accept ip addresses with a zero at the end

This commit is contained in:
Rekryt
2025-08-14 10:12:17 +03:00
parent 10b73d98e3
commit a0e024b6ae

View File

@@ -104,8 +104,7 @@ class SiteFactory {
!str_starts_with($item, '10.') &&
!str_starts_with($item, '172.16.') &&
!str_starts_with($item, '192.168.') &&
!str_starts_with($item, 'fd') &&
!str_ends_with($item, '.0')))
!str_starts_with($item, 'fd')))
)
)
);