Skip to content

Commit

Permalink
fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
danReynolds committed Feb 10, 2021
1 parent a7319dd commit e8d0d3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ios/Classes/SwiftReceiveSharingIntentPlugin.swift
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public class SwiftReceiveSharingIntentPlugin: NSObject, FlutterPlugin, FlutterSt
// This is the function called on resuming the app from a shared link.
// It handles requests to open a resource by a specified URL. Returning true means that it was handled successfully, false means the attempt to open the resource failed.
// If the URL includes the module's ShareMedia prefix, then we process the URL and return true if we know how to handle that kind of URL or false if we are not able to.
// If the URL does not include the module's prefix, then we return false to indicate our module attempt to open the resource failed and others should be allowed to.
// If the URL does not include the module's prefix, then we return false to indicate our module's attempt to open the resource failed and others should be allowed to.
// Reference: https://developer.apple.com/documentation/uikit/uiapplicationdelegate/1623112-application
public func application(_ application: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey : Any] = [:]) -> Bool {
if (hasMatchingSchemePrefix(url: url)) {
Expand Down

0 comments on commit e8d0d3a

Please sign in to comment.