Suppress exceptions for non-indexed mods #4170
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Problem
ConsoleUI users who had installed
CountryDoggosRandomKKBits
see this exception as of KSP-CKAN/NetKAN#8711 and KSP-CKAN/CKAN-meta#3283:Cause
In #3904,
Registry.LatestCompatibleGameVersion
was changed from never throwing exceptions:CKAN/Core/Registry/Registry.cs
Lines 717 to 725 in 7ddc0ed
To possibly throwing
ModuleNotFoundKraken
viagetAvail
if the identifier wasn't indexed:CKAN/Core/Registry/Registry.cs
Lines 676 to 683 in 2fc36b4
ConsoleUI uses that function as if its failure mode is to return
null
, not throw an exception:CKAN/ConsoleUI/ModListScreen.cs
Lines 55 to 59 in 2fc36b4
CountryDoggosRandomKKBits
is no longer indexed, so now that exception is being thrown and not caught.Changes
Registry.LatestCompatibleGameVersion
doesn't throwModuleNotFoundKraken
anymore, as it was originallyRegistry.ProvidedByInstalled
is cached while the installed mods remain the same to slightly improve performance, as suggested by a TODO comment long agoFixes #4169.