mirror of
https://github.com/NinjaCheetah/libWiiPy.git
synced 2025-04-27 22:01:01 -04:00
Always user all uppercase when getting installed titles on EmuNAND
This commit is contained in:
parent
046645eb56
commit
7c5af6ebe0
@ -199,8 +199,8 @@ class EmuNAND:
|
|||||||
valid_lows = []
|
valid_lows = []
|
||||||
for low in tid_lows:
|
for low in tid_lows:
|
||||||
if low.joinpath("content", "title.tmd").exists():
|
if low.joinpath("content", "title.tmd").exists():
|
||||||
valid_lows.append(low.name)
|
valid_lows.append(low.name.upper())
|
||||||
installed_titles.append(self.InstalledTitles(high.name, valid_lows))
|
installed_titles.append(self.InstalledTitles(high.name.upper(), valid_lows))
|
||||||
return installed_titles
|
return installed_titles
|
||||||
|
|
||||||
def get_title_tmd(self, tid: str) -> TMD:
|
def get_title_tmd(self, tid: str) -> TMD:
|
||||||
|
@ -433,6 +433,10 @@ class Title:
|
|||||||
-------
|
-------
|
||||||
bool
|
bool
|
||||||
Whether the title is properly signed or not.
|
Whether the title is properly signed or not.
|
||||||
|
|
||||||
|
See Also
|
||||||
|
--------
|
||||||
|
libWiiPy.title.cert
|
||||||
"""
|
"""
|
||||||
# The entire chain needs to be verified, so start with the CA cert and work our way down. If anything fails
|
# The entire chain needs to be verified, so start with the CA cert and work our way down. If anything fails
|
||||||
# along the way, future steps don't matter so exit the descending if's and return False.
|
# along the way, future steps don't matter so exit the descending if's and return False.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user