InvalidUuid > InvalidArgument 2

Co-Authored-By: Thomas Guillemard <thog@protonmail.com>
This commit is contained in:
Ac_K 2019-06-27 13:22:46 +02:00 committed by GitHub
parent 92b6b3db8f
commit 7fbcc0eda6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -37,7 +37,7 @@ namespace Ryujinx.HLE.HOS.Services.Friend
if (userId.IsNull)
{
return MakeError(ErrorModule.Friends, FriendErr.InvalidUuid);
return MakeError(ErrorModule.Friends, FriendErr.InvalidArgument);
}
MakeObject(context, new INotificationService(userId));
@ -53,4 +53,4 @@ namespace Ryujinx.HLE.HOS.Services.Friend
return 0;
}
}
}
}