Commit bb11f2d 1 parent ff8b665 commit bb11f2d Copy full SHA for bb11f2d
File tree 2 files changed +5
-7
lines changed
2 files changed +5
-7
lines changed Original file line number Diff line number Diff line change 18
18
<RepositoryUrl >https://github.com/Baseflow/XamarinMediaManager</RepositoryUrl >
19
19
<RepositoryType >git</RepositoryType >
20
20
<Product >$(AssemblyName) ($(TargetFramework))</Product >
21
- <Version >1.0.7 </Version >
21
+ <Version >1.0.8 </Version >
22
22
23
23
<!-- <Nullable>enable</Nullable>-->
24
24
<LangVersion >8.0</LangVersion >
Original file line number Diff line number Diff line change @@ -105,13 +105,11 @@ public int CurrentIndex
105
105
get => _currentIndex ;
106
106
set
107
107
{
108
- if ( SetProperty ( ref _currentIndex , value ) )
108
+ SetProperty ( ref _currentIndex , value ) ;
109
+ if ( Current != null )
109
110
{
110
- if ( Current != null )
111
- {
112
- OnQueueChanged ( this , new QueueChangedEventArgs ( Current ) ) ;
113
- MediaManager . OnMediaItemChanged ( this , new MediaItemEventArgs ( Current ) ) ;
114
- }
111
+ OnQueueChanged ( this , new QueueChangedEventArgs ( Current ) ) ;
112
+ MediaManager . OnMediaItemChanged ( this , new MediaItemEventArgs ( Current ) ) ;
115
113
}
116
114
}
117
115
}
You can’t perform that action at this time.
0 commit comments