Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
NSActivityOptions.IdleDisplaySleepDisabled had wrong value (xamarin#2232
) This was due to an integer overflow. The original value was based on Int32 1 << 40 == 256 The correct value should be based on a UInt64. 1UL << 40 == 1099511627776
- Loading branch information