laurencee / Livestream.Monitor

A windows GUI for livestreamer/streamlink
GNU General Public License v2.0
59 stars 8 forks source link

Popup doesnt show when youtube channel goes live #40

Closed nicfedor closed 6 years ago

nicfedor commented 6 years ago

Hey. I added my own youtube channel on this soft but when i start streaming popup in right corner doesn't show. I tracked to this

private void LivestreamsOnCollectionChanged(object sender, NotifyCollectionChangedEventArgs e) { if (e.NewItems != null) { foreach (LivestreamModel livestream in e.NewItems) { HookLivestreamChangeEvents(livestream); } }

        if (e.OldItems != null)
        {
            foreach (LivestreamModel removedLivestream in e.OldItems)
            {
                UnhookLivestreamChangeEvents(removedLivestream);
            }
        }
    }

but e doesn't contain any livestreams so HookLivestreamChangeEvents(livestream) never called and pop up notification never shows. Why is that? I'm definitely streaming, i see it on youtube. And status icon in list of channels change it's color to green, but popup never shows.

laurencee commented 6 years ago

Are you running version 2.11.2?

I'll take a look this evening and see what's happening, thanks for the report.

nicfedor commented 6 years ago

Yes. 2.11.2.

2017-12-01 8:39 GMT+05:00 Laurence0x03 notifications@github.com:

Are you running version 2.11.2?

I'll take a look this evening and see what's happening, thanks for the report.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/laurencee/Livestream.Monitor/issues/40#issuecomment-348393138, or mute the thread https://github.com/notifications/unsubscribe-auth/ARxLKFU4WLP1KhVuZyejdlvlXuxzsPw_ks5s73UJgaJpZM4QwX5c .

laurencee commented 6 years ago

I see the issue, will sort it out.

laurencee commented 6 years ago

https://github.com/laurencee/Livestream.Monitor/releases/tag/2.11.3

Let me know if you have anymore issues.