Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Link argument not specified in javascript call
If the plugin's javascript "share" method is called without specifying the 3rd and 4th arguments, such as in: window.plugins.socialsharing.share('Message and subject', 'The subject') The condition: !"null".Equals(link) in the C# implementation is satisfied (link is null and not "null") and the method call is incorrectly interpreted as a "share link" intent, thus resulting in an exception being thrown when the following instruction is executed: shareLinkTask.LinkUri = new System.Uri(link, System.UriKind.Absolute)
- Loading branch information