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 3cff2ed commit 496f3c7Copy full SHA for 496f3c7
sync/database.go
@@ -63,7 +63,7 @@ func (database *Database) String(direction string) string {
63
}
64
65
if connRemote.IsDocker() {
66
- remote = append(remote, fmt.Sprintf("Docker:%s", connRemote.Docker))
+ remote = append(remote, fmt.Sprintf("Docker:%s", connRemote.Docker.Hostname))
67
} else if database.Hostname != "" {
68
hostname := database.Hostname
69
@@ -93,7 +93,7 @@ func (database *Database) String(direction string) string {
93
94
95
if connLocal.IsDocker() {
96
- local = append(local, fmt.Sprintf("Docker:%s", connLocal.Docker))
+ local = append(local, fmt.Sprintf("Docker:%s", connLocal.Docker.Hostname))
97
} else if database.Local.Hostname != "" {
98
hostname := database.Local.Hostname
99
0 commit comments