diff options
| author | Brad Fitzpatrick <bradfitz@tailscale.com> | 2022-07-19 09:20:49 -0700 |
|---|---|---|
| committer | Brad Fitzpatrick <brad@danga.com> | 2022-07-19 09:25:06 -0700 |
| commit | 2491fe1afeee55b26063c30ccdd40d84794be3dc (patch) | |
| tree | bbe30a114832de6a810f72a122a228599c3fa5f6 | |
| parent | c1cb3efbba1f4bf854110e26df900b102357bd6a (diff) | |
| download | tailscale-2491fe1afeee55b26063c30ccdd40d84794be3dc.tar.xz tailscale-2491fe1afeee55b26063c30ccdd40d84794be3dc.zip | |
tailcfg: add missing omitempty annotation to PopBrowserURL
Change-Id: I8e752afd5bf009c17aae1b53650479b37c3232bd
Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
| -rw-r--r-- | tailcfg/tailcfg.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tailcfg/tailcfg.go b/tailcfg/tailcfg.go index 2ac946ff0..ae39a5362 100644 --- a/tailcfg/tailcfg.go +++ b/tailcfg/tailcfg.go @@ -1209,7 +1209,7 @@ type MapResponse struct { // PopBrowserURL, if non-empty, is a URL for the client to // open to complete an action. The client should dup suppress // identical URLs and only open it once for the same URL. - PopBrowserURL string + PopBrowserURL string `json:",omitempty"` // Networking |
