Prevent crashes in 32-bit devices
This commit is contained in:
parent
c291623af3
commit
b87c3ba7f8
|
@ -31,6 +31,10 @@
|
|||
}
|
||||
|
||||
- (void)requestAd {
|
||||
#ifndef __LP64__
|
||||
return; // prevent crash on 32bit
|
||||
#endif
|
||||
|
||||
if (_unitId == nil || _size == nil || _request == nil) {
|
||||
[self setRequested:NO];
|
||||
return;
|
||||
|
|
Loading…
Reference in New Issue