Sagiri-Dev / Sagiri

Sagiri makes full use of Spotify-WebAPI It's third party app.
Other
10 stars 0 forks source link

[Bug] Spotify 認証後、Spotify 再生中トースト通知が2回出る #26

Open Asteriskx opened 7 months ago

Asteriskx commented 7 months ago

SagiriApp/Models/SagiriModel.cs

internal async ValueTask InitializeAsync()
{
    ...
    await _ISpotifyService.StartAsync(_CancellationSource.Token).ConfigureAwait(false); ←これが不要
    ...
}

internal async ValueTask StartAsync()
{
    ...
    await _ISpotifyService.StartAsync(_CancellationSource.Token).ConfigureAwait(false);
    ...
}