Skip to content

Commit 0609440

Browse files
pwasowski2swift-kim
authored andcommitted
Fix privilege name in log message (flutter-tizen#109)
* Fix privilege name * Fix formatting
1 parent a7ce680 commit 0609440

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

shell/platform/tizen/channels/platform_channel.cc

+2-4
Original file line numberDiff line numberDiff line change
@@ -88,10 +88,8 @@ class FeedbackManager {
8888
return method_name_with_args + " is not supported";
8989
case ResultCode::kPermissionDeniedError:
9090
return std::string{"No permission to run "} + method_name_with_args +
91-
". Add "
92-
"\"http://tizen.org/privilege/feedback\" privilege to "
93-
"tizen-manifest.xml "
94-
"to use this method";
91+
". Add \"http://tizen.org/privilege/haptic\" privilege to "
92+
"tizen-manifest.xml to use this method";
9593
case ResultCode::kUnknownError:
9694
default:
9795
return std::string{"An unknown error on "} + method_name_with_args +

0 commit comments

Comments
 (0)