File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Unreleased
2
2
3
+ - [ IMPROVEMENT] Allow disabling app hang monitoring in ObjC API. See [ #1908 ] [ ]
4
+
3
5
# 2.13.0 / 13-06-2024
4
6
5
7
- [ IMPROVEMENT] Bump ` IPHONEOS_DEPLOYMENT_TARGET ` and ` TVOS_DEPLOYMENT_TARGET ` from 11 to 12. See [ #1891 ] [ ]
@@ -684,6 +686,7 @@ Release `2.0` introduces breaking changes. Follow the [Migration Guide](MIGRATIO
684
686
[ #1835 ] : https://github.com/DataDog/dd-sdk-ios/pull/1835
685
687
[ #1886 ] : https://github.com/DataDog/dd-sdk-ios/pull/1886
686
688
[ #1898 ] : https://github.com/DataDog/dd-sdk-ios/pull/1898
689
+ [ #1908 ] : https://github.com/DataDog/dd-sdk-ios/pull/1908
687
690
[ @00fa9a ] : https://github.com/00FA9A
688
691
[ @britton-earnin ] : https://github.com/Britton-Earnin
689
692
[ @hengyu ] : https://github.com/Hengyu
Original file line number Diff line number Diff line change @@ -378,7 +378,7 @@ public class DDRUMConfiguration: NSObject {
378
378
}
379
379
380
380
@objc public var appHangThreshold : TimeInterval {
381
- set { swiftConfig. appHangThreshold = newValue }
381
+ set { swiftConfig. appHangThreshold = newValue == 0 ? nil : newValue }
382
382
get { swiftConfig. appHangThreshold ?? 0 }
383
383
}
384
384
You can’t perform that action at this time.
0 commit comments