diff --git a/Pod/Classes/PNClasses/PNInstallation.m b/Pod/Classes/PNClasses/PNInstallation.m index bdf7486..0be0b73 100644 --- a/Pod/Classes/PNClasses/PNInstallation.m +++ b/Pod/Classes/PNClasses/PNInstallation.m @@ -99,9 +99,11 @@ static bool isFirstAccess = YES; if (self) { + _deviceType = @"iOS"; _deviceModel = [[UIDevice currentDevice] model]; - _osVersion = [[UIDevice currentDevice] systemVersion];; - _deviceName = [[UIDevice currentDevice] name];; + _osVersion = [[UIDevice currentDevice] systemVersion]; + _deviceName = [[UIDevice currentDevice] name]; + } return self; }