We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b099a5 commit 5994c15Copy full SHA for 5994c15
ios/Classes/CountlyFlutterPlugin.m
@@ -533,7 +533,12 @@ - (void)handleMethodCall:(FlutterMethodCall*)call result:(FlutterResult)result {
533
if(!value){
534
value = @"Default Value";
535
}
536
- result([value stringValue]);
+ NSString *theType = NSStringFromClass([value class]);
537
+ if([theType isEqualToString:@"NSTaggedPointerString"]){
538
+ result(value);
539
+ }else{
540
+ result([value stringValue]);
541
+ }
542
}else if ([@"askForFeedback" isEqualToString:call.method]) {
543
NSString* widgetId = [command objectAtIndex:0];
544
[Countly.sharedInstance presentFeedbackWidgetWithID:widgetId completionHandler:^(NSError* error){
0 commit comments