When experimenting with title id changes I've noticed that when providing incorrect title id, the error presented suggest that there are no updates available instead of informing that the title id itself is incorrect:
The fix takes into account a response in form of <Error><Code>...</Code><Error> tags which are returned with a text "NoSuchKey" in response when requesting the psn backend with an incorrect title id:
Although I couldn't trigger a case with only <Error> or only <Code> tags without the other, there are warn!s added when such thing might occur. In case some other error is returned as error code instead of "NoSuchKey" there's an additional type of toast/information added.
I think I ran into the element while fixing something else and assumed I had fucked up something about error detection for no updates. Should've checked what the xml actually said lol.
When experimenting with title id changes I've noticed that when providing incorrect title id, the error presented suggest that there are no updates available instead of informing that the title id itself is incorrect:
The fix takes into account a response in form of
<Error><Code>...</Code><Error>
tags which are returned with a text "NoSuchKey" in response when requesting the psn backend with an incorrect title id:Although I couldn't trigger a case with only
<Error>
or only<Code>
tags without the other, there arewarn!
s added when such thing might occur. In case some other error is returned as error code instead of "NoSuchKey" there's an additional type of toast/information added.