Skip to content

Commit ad17be1

Browse files
committed
Fix WithReferrerContext is func
1 parent 264d98e commit ad17be1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/gitpod-protocol/src/protocol.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -882,7 +882,7 @@ export interface WithReferrerContext extends WorkspaceContext {
882882

883883
export namespace WithReferrerContext {
884884
export function is(context: any): context is WithReferrerContext {
885-
return context && "referrer" in context;
885+
return context && "referrer" in context && "referrerIde" in context;
886886
}
887887
}
888888

0 commit comments

Comments
 (0)