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 096a85e commit 971f9d6Copy full SHA for 971f9d6
codersdk/workspaceagents.go
@@ -429,6 +429,8 @@ func (d WorkspaceAgentDevcontainer) Equals(other WorkspaceAgentDevcontainer) boo
429
d.Dirty == other.Dirty &&
430
(d.Container == nil && other.Container == nil ||
431
(d.Container != nil && other.Container != nil && d.Container.ID == other.Container.ID)) &&
432
+ (d.Agent == nil && other.Agent == nil ||
433
+ (d.Agent != nil && other.Agent != nil && *d.Agent == *other.Agent)) &&
434
d.Error == other.Error
435
}
436
0 commit comments