Link direto do PushSharp + Windows Phone no Notification de Toast

Ao usar o PushSharp com o Windows Phone, estou enviando a notificação com um link direto para uma visualização no meu aplicativo.

push.QueueNotification(new WindowsPhoneToastNotification()
.ForEndpointUri(new Uri(endpoint))
.ForOSVersion(WindowsPhoneDeviceOSVersion.Eight)
.WithBatchingInterval(BatchingInterval.Immediate)
.WithNavigatePath("/Views/DetailView.xaml")
.WithParameter("slug", slug)
.WithText1(text)
.WithText2(message));

Mas quando o brinde aparece e eu o toco para abrir o aplicativo, o aplicativo é aberto na visualização padrão, em vez do DetailView solicitado.

Isso não deve abrir para o meu DetailView?

questionAnswers(1)

yourAnswerToTheQuestion