Skip to content

Commit 48cb08d

Browse files
committed
chore: lint
1 parent c014d30 commit 48cb08d

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

api/src/unraid-api/graph/resolvers/docker/docker-event.service.ts

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,9 +123,11 @@ export class DockerEventService implements OnModuleDestroy, OnModuleInit {
123123
this.logger.debug(`[${dockerEvent.from}] ${dockerEvent.Type}->${actionName}`);
124124

125125
// For container lifecycle events, update the container cache
126-
if (dockerEvent.Type === DockerEventType.CONTAINER &&
127-
typeof actionName === 'string' &&
128-
this.containerActions.includes(actionName as DockerEventAction)) {
126+
if (
127+
dockerEvent.Type === DockerEventType.CONTAINER &&
128+
typeof actionName === 'string' &&
129+
this.containerActions.includes(actionName as DockerEventAction)
130+
) {
129131
await this.dockerService.debouncedContainerCacheUpdate();
130132
}
131133
}

0 commit comments

Comments
 (0)