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.
Equals
1 parent 88a611d commit 001ccdaCopy full SHA for 001ccda
codersdk/workspaceagents.go
@@ -427,6 +427,8 @@ func (d WorkspaceAgentDevcontainer) Equals(other WorkspaceAgentDevcontainer) boo
427
d.WorkspaceFolder == other.WorkspaceFolder &&
428
d.Status == other.Status &&
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.Error == other.Error
433
}
434
0 commit comments