Add error code for denied internet request in Friends (#1207)
* Add error code for denied internet request in Friends * Fix formatting from previous PR
This commit is contained in:
parent
232d53a1ff
commit
f84fb20959
2 changed files with 3 additions and 2 deletions
|
@ -8,6 +8,7 @@
|
||||||
Success = 0,
|
Success = 0,
|
||||||
|
|
||||||
InvalidArgument = (2 << ErrorCodeShift) | ModuleId,
|
InvalidArgument = (2 << ErrorCodeShift) | ModuleId,
|
||||||
|
InternetRequestDenied = (6 << ErrorCodeShift) | ModuleId,
|
||||||
NotificationQueueEmpty = (15 << ErrorCodeShift) | ModuleId
|
NotificationQueueEmpty = (15 << ErrorCodeShift) | ModuleId
|
||||||
}
|
}
|
||||||
}
|
}
|
Reference in a new issue