Do not show launch unless starts with HTTP

This commit is contained in:
Kyle Spearrin 2017-06-08 15:43:01 -04:00
parent 72b18eadf3
commit 6a03c3e77d
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ namespace Bit.App.Models.Page
{
get
{
if(!ShowUri)
if(!ShowUri || !Uri.StartsWith("http"))
{
return false;
}