Skip to content

Commit

Permalink
Merge pull request #10 from d-date/fix-xcode-13
Browse files Browse the repository at this point in the history
Fix availability for iOS 15
  • Loading branch information
noppefoxwolf authored Aug 11, 2021
2 parents 1c7a788 + 61ab4d6 commit dad2b5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/DebugMenu/View/InAppDebuggerViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ extension InAppDebuggerViewController {
>(elementKind: UICollectionView.elementKindSectionHeader) {
[weak self] (headerView, elementKind, indexPath) in
var configuration = headerView.defaultContentConfiguration()
if #available(iOSApplicationExtension 15.0, *) {
if #available(iOS 15.0, *) {
#if compiler(>=5.5)
configuration.text =
self?.dataSource.sectionIdentifier(for: indexPath.section)?.title
Expand Down

0 comments on commit dad2b5c

Please sign in to comment.