viktor-shmigol / electron-windows-badge

Electron Windows Badge plugin to access and modify the badge number of the app icon in windows.
MIT License
81 stars 21 forks source link

Error using badge in angular embedded app #4

Closed kespinosa05 closed 5 years ago

kespinosa05 commented 5 years ago

Hi i am get error using this plugin inside ipcRenderer in embedded angular7 app i am using like that this.electronService.ipcRenderer.sendSync('update-badge', 5); and i get error image

viktor-shmigol commented 5 years ago

@kespinosa05 Have you passed window object to Badge class? E.g:

    function createWindow () {
        win = new BrowserWindow({width: 800, height: 600});
        const badgeOptions = {}
        new Badge(win, badgeOptions);
    }