mirror of
https://github.com/Nightkingale/Wii-U-Account-Swap.git
synced 2026-03-21 18:04:13 -05:00
Adjust backup string search for CDN URL change
This commit is contained in:
parent
d58a198f4c
commit
d11a2d1372
|
|
@ -105,11 +105,11 @@ backup_account()
|
|||
}
|
||||
|
||||
bool network_account_found = false;
|
||||
if (content.find("account.nintendo.net") != std::string::npos) {
|
||||
if (content.find("nintendo") != std::string::npos) {
|
||||
// Nintendo Network ID is linked to the account.
|
||||
backup_path = NNID_BACKUP;
|
||||
network_account_found = true;
|
||||
} else if (content.find("pretendo-cdn.b-cdn.net") != std::string::npos) {
|
||||
} else if (content.find("pretendo") != std::string::npos) {
|
||||
// Pretendo Network ID is linked to the account.
|
||||
backup_path = PNID_BACKUP;
|
||||
network_account_found = true;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user