Artemis.Modules.Effects.WindowsProfile.WindowsProfileModel.UpdateSpotify C# (CSharp) Method

UpdateSpotify() public method

public UpdateSpotify ( WindowsProfileDataModel dataModel ) : void
dataModel WindowsProfileDataModel
return void
        public void UpdateSpotify(WindowsProfileDataModel dataModel)
        {
            if (!dataModel.Spotify.Running && SpotifyLocalAPI.IsSpotifyRunning())
                SetupSpotify();

            dataModel.Spotify.Running = SpotifyLocalAPI.IsSpotifyRunning();
        }