Fix a clang-tidy warning about a potentially nil value in the editingState dictionary (flutter/engine#43660)

This commit is contained in:
Jason Simmons
2023-07-13 16:09:26 -07:00
committed by GitHub
parent 417cee5b50
commit db4c5360bf

View File

@@ -536,7 +536,7 @@ static char markerKey;
kSelectionIsDirectionalKey : @NO,
kComposingBaseKey : @(composingBase),
kComposingExtentKey : @(composingExtent),
kTextKey : [NSString stringWithUTF8String:_activeModel->GetText().c_str()]
kTextKey : [NSString stringWithUTF8String:_activeModel->GetText().c_str()] ?: [NSNull null],
};
}