mirror of
https://github.com/element-hq/element-web.git
synced 2024-12-03 20:36:57 +03:00
Fix missing underscore
This commit is contained in:
parent
b5564a0de0
commit
678474c0e8
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@ export class PosthogAnalytics {
|
|||
private static _instance = null;
|
||||
|
||||
public static instance(): PosthogAnalytics {
|
||||
if (!this.instance) {
|
||||
if (!this._instance) {
|
||||
this._instance = new PosthogAnalytics(posthog);
|
||||
}
|
||||
return this._instance;
|
||||
|
|
Loading…
Reference in a new issue