|
|
@ -100,7 +100,6 @@ type Notify struct {
|
|
|
|
NetMap *netmap.NetworkMap // if non-nil, the new or current netmap
|
|
|
|
NetMap *netmap.NetworkMap // if non-nil, the new or current netmap
|
|
|
|
Engine *EngineStatus // if non-nil, the new or current wireguard stats
|
|
|
|
Engine *EngineStatus // if non-nil, the new or current wireguard stats
|
|
|
|
BrowseToURL *string // if non-nil, UI should open a browser right now
|
|
|
|
BrowseToURL *string // if non-nil, UI should open a browser right now
|
|
|
|
BackendLogID *string // if non-nil, the public logtail ID used by backend
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// FilesWaiting if non-nil means that files are buffered in
|
|
|
|
// FilesWaiting if non-nil means that files are buffered in
|
|
|
|
// the Tailscale daemon and ready for local transfer to the
|
|
|
|
// the Tailscale daemon and ready for local transfer to the
|
|
|
@ -173,9 +172,6 @@ func (n Notify) String() string {
|
|
|
|
if n.BrowseToURL != nil {
|
|
|
|
if n.BrowseToURL != nil {
|
|
|
|
sb.WriteString("URL=<...> ")
|
|
|
|
sb.WriteString("URL=<...> ")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if n.BackendLogID != nil {
|
|
|
|
|
|
|
|
sb.WriteString("BackendLogID ")
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if n.FilesWaiting != nil {
|
|
|
|
if n.FilesWaiting != nil {
|
|
|
|
sb.WriteString("FilesWaiting ")
|
|
|
|
sb.WriteString("FilesWaiting ")
|
|
|
|
}
|
|
|
|
}
|
|
|
|