summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.WP8/WP8PlatformServices.cs
diff options
context:
space:
mode:
authorE.Z. Hart <hartez@users.noreply.github.com>2016-04-07 12:20:07 -0600
committerE.Z. Hart <hartez@users.noreply.github.com>2016-04-07 12:20:07 -0600
commite9eaacff4a1ee16729ae434d44fe0f9846712ef3 (patch)
tree227cc353cf00f2eadbb76909de9e5a929ab4e80b /Xamarin.Forms.Platform.WP8/WP8PlatformServices.cs
parent748153c4e1c13831dafb680841ca68ee2d071935 (diff)
downloadxamarin-forms-e9eaacff4a1ee16729ae434d44fe0f9846712ef3.tar.gz
xamarin-forms-e9eaacff4a1ee16729ae434d44fe0f9846712ef3.tar.bz2
xamarin-forms-e9eaacff4a1ee16729ae434d44fe0f9846712ef3.zip
Merge pull request #60 from xamarin/warnings-WP8-4014
Turn off suppression of warning CS4014 Port TaskExtensions from WinRT projects to WP8 Update implementation of OpenUriAction to use TaskExtensions
Diffstat (limited to 'Xamarin.Forms.Platform.WP8/WP8PlatformServices.cs')
-rw-r--r--Xamarin.Forms.Platform.WP8/WP8PlatformServices.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Xamarin.Forms.Platform.WP8/WP8PlatformServices.cs b/Xamarin.Forms.Platform.WP8/WP8PlatformServices.cs
index c20071f4..4d49315e 100644
--- a/Xamarin.Forms.Platform.WP8/WP8PlatformServices.cs
+++ b/Xamarin.Forms.Platform.WP8/WP8PlatformServices.cs
@@ -134,7 +134,7 @@ namespace Xamarin.Forms
public void OpenUriAction(Uri uri)
{
- Launcher.LaunchUriAsync(uri);
+ Launcher.LaunchUriAsync(uri).WatchForError();
}
public void StartTimer(TimeSpan interval, Func<bool> callback)