Malcolm Hall

Results 133 comments of Malcolm Hall

Same problem here. `pageContents` in `DoesEmailExist` is a hex string for some reason instead of json.

I ended up migrating from the Tunnel Settings (legacy) to Connections https://docs.opnsense.org/manual/vpnet.html#migrating-from-tunnels-to-connections And DNS is working again, not sure which version broke it.

In the instructions this step is no longer possible: "DNS Servers: ✅ Provide a DNS server list to clients" Either they removed it by accident or maybe they moved it...

Sure, Remove: "DNS Servers: ✅ Provide a DNS server list to clients" Add: VPN->IPsec->Mobile & Advanced Settings->Attr DNS: 10.0.1.1 I believe it can work with any auth method, personally I...

Thanks. Btw the newlines are being removed when it's viewed on github's web interface.

You can use [round](https://www.php.net/manual/en/function.round.php) for that

I tested on iOS 18.4 beta 1 and I'm seeing `viewWillAppear` now in my representable that's inside `List` and I also checked `Table`.

The `@autoclosure` requires the wrapped object init to be on same line, e.g. `_observer = StateObject(wrappedValue: FetchObserver(filter: filter, context: nil) )` That fixes the leak however you will still need...

One pattern to resolve that is throw an exception if the object is not configured correctly when results are being requested. I just noticed you have: ``` func fetchIfNecessary() {...