From 08bad61703d08dcafd2f8d7419889ed7a6815e5e Mon Sep 17 00:00:00 2001 From: David Luecke Date: Mon, 19 Aug 2019 16:51:26 -0700 Subject: [PATCH] fix: Fix auth publisher mistake --- packages/authentication/src/service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/authentication/src/service.ts b/packages/authentication/src/service.ts index 4f5b57a6d1..fc4b88de49 100644 --- a/packages/authentication/src/service.ts +++ b/packages/authentication/src/service.ts @@ -162,7 +162,7 @@ export class AuthenticationService extends AuthenticationBase implements Partial } }); - if (typeof self.publish !== 'function') { + if (typeof self.publish === 'function') { self.publish(() => null); } }