Skip to content

Commit dc990f4

Browse files
committed
Fix app breakage with a 'version' file
Re-add accidenally removed variable initialiser
1 parent a9b5282 commit dc990f4

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

src/vector/platform/WebPlatform.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ import url from 'url';
2626
import UAParser from 'ua-parser-js';
2727

2828
export default class WebPlatform extends VectorBasePlatform {
29+
constructor() {
30+
super();
31+
this.runningVersion = null;
32+
}
2933

3034
/**
3135
* Returns true if the platform supports displaying

0 commit comments

Comments
 (0)