File tree Expand file tree Collapse file tree 3 files changed +4
-7
lines changed Expand file tree Collapse file tree 3 files changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ go 1.25.2
55require (
66 github.com/tailscale/wireguard-go v0.0.0-20250716170648-1d0488a3d7da
77 golang.org/x/mobile v0.0.0-20240806205939-81131f6468ab
8- tailscale.com v1.89.0-pre.0.20251010193330-005e264b5456
8+ tailscale.com v1.89.0-pre.0.20251016142735-0ce88aa34330
99)
1010
1111require (
Original file line number Diff line number Diff line change @@ -235,5 +235,5 @@ howett.net/plist v1.0.0 h1:7CrbWYbPPO/PyNy38b2EB/+gYbjCe2DXBxgtOOZbSQM=
235235howett.net/plist v1.0.0 /go.mod h1:lqaXoTrLY4hg8tnEzNru53gicrbv7rrk+2xJA/7hw9g =
236236software.sslmate.com/src/go-pkcs12 v0.4.0 h1:H2g08FrTvSFKUj+D309j1DPfk5APnIdAQAB8aEykJ5k =
237237software.sslmate.com/src/go-pkcs12 v0.4.0 /go.mod h1:Qiz0EyvDRJjjxGyUQa2cCNZn/wMyzrRJ/qcDXOQazLI =
238- tailscale.com v1.89.0-pre.0.20251010193330-005e264b5456 h1:ELfWhOfTpC6wEHvD74NUwhvwQtGaR+fSmU7ldTTgBzU =
239- tailscale.com v1.89.0-pre.0.20251010193330-005e264b5456 /go.mod h1:gsjhGL2raodX0jQJ6uTD5dWJmc1DFtf5nQ1MRpzCReU =
238+ tailscale.com v1.89.0-pre.0.20251016142735-0ce88aa34330 h1:gORhffrlkZP3IojblMRZVDqwItdSqEs4B+iwQ4ZAEC0 =
239+ tailscale.com v1.89.0-pre.0.20251016142735-0ce88aa34330 /go.mod h1:gsjhGL2raodX0jQJ6uTD5dWJmc1DFtf5nQ1MRpzCReU =
Original file line number Diff line number Diff line change @@ -98,8 +98,5 @@ func (k *hardwareAttestationKey) Clone() key.HardwareAttestationKey {
9898}
9999
100100func (k * hardwareAttestationKey ) IsZero () bool {
101- if k == nil {
102- return true
103- }
104- return k .id == ""
101+ return k == nil || k .id == "" || k .public == nil
105102}
You can’t perform that action at this time.
0 commit comments