File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 15156 . Fixed Issue with not Auto-Creating a Plugins folder.
16167 . Fixed Issue with not Auto-Creating a Mods folder.
17178 . Fixed Issue with not Auto-Creating a UserData folder.
18- 9 . Fixed Issue with Null Reference Exception with getting Existing MelonLoader Install Version.
18+ 9 . Fixed Issue with Null Reference Exception from attempting to get the Existing MelonLoader Install Version.
19+ 10 . Fixed Issue with Null Reference Exception from Releases List Refresh when Launched with "Show ALPHA Pre-Releases" turned on.
1920
2021---
2122
Original file line number Diff line number Diff line change @@ -399,7 +399,8 @@ internal void RefreshReleasesListing()
399399 Automated_Version_Selection . Items . AddRange ( ( Config . ShowAlphaPreReleases
400400 ? ThreadHandler . releasesList_All . ToArray ( )
401401 : ThreadHandler . releasesList . ToArray ( ) ) ) ;
402- Automated_Version_Selection . SelectedIndex = 0 ;
402+ if ( Automated_Version_Selection . Items . Count > 0 )
403+ Automated_Version_Selection . SelectedIndex = 0 ;
403404 }
404405 private void Settings_ShowAlphaPreReleases_CheckedChanged ( object sender , EventArgs e )
405406 {
You can’t perform that action at this time.
0 commit comments