Skip to content

Commit

Permalink
fix: error formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
ntsd committed Aug 21, 2024
1 parent b12a4a6 commit 4c1aa86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/crossclipboard/crossclipboard.go
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ func NewCrossClipboard(cfg *config.Config) (*CrossClipboard, error) {
break
}
if retry == 5 {
cc.ErrorChan <- xerror.NewRuntimeErrorf("error to connect to peer %d", peerInfo.ID.Pretty())
cc.ErrorChan <- xerror.NewRuntimeErrorf("error to connect to peer %s", peerInfo.ID.Pretty())
continue
}

Expand Down

0 comments on commit 4c1aa86

Please sign in to comment.