diff --git a/Sources/Backup/Commands/OARegisterDeviceCommand.m b/Sources/Backup/Commands/OARegisterDeviceCommand.m index 352b57e65e..6084d6d90a 100644 --- a/Sources/Backup/Commands/OARegisterDeviceCommand.m +++ b/Sources/Backup/Commands/OARegisterDeviceCommand.m @@ -55,7 +55,8 @@ - (void) main params[@"token"] = _token; params[@"lang"] = [OAUtilities currentLang]; UIDevice *device = [UIDevice currentDevice]; - params[@"model"] = [NSString stringWithFormat:@"Apple %@", device.model]; // Apple iPhone, Apple iPad + params[@"brand"] = @"Apple"; + params[@"model"] = device.model; [OANetworkUtilities sendRequestWithUrl:OABackupHelper.DEVICE_REGISTER_URL params:params post:YES onComplete:^(NSData * _Nullable data, NSURLResponse * _Nullable response, NSError * _Nullable error) { int status; NSString *message;