We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c31c71 commit 1ab135aCopy full SHA for 1ab135a
internal/domain/tailnet.go
@@ -30,9 +30,9 @@ type TailnetRepository interface {
30
DeleteTailnet(ctx context.Context, id uint64) error
31
}
32
33
-func (t Tailnet) GetDERPMap(ctx context.Context, fallack DefaultDERPMap) (*DERPMap, error) {
+func (t Tailnet) GetDERPMap(ctx context.Context, fallback DefaultDERPMap) (*DERPMap, error) {
34
if t.DERPMap.Checksum == "" {
35
- return fallack.GetDERPMap(ctx)
+ return fallback.GetDERPMap(ctx)
36
} else {
37
return &t.DERPMap, nil
38
0 commit comments