Skip to content

Commit

Permalink
Fix website link opening
Browse files Browse the repository at this point in the history
  • Loading branch information
BlythMeister committed May 5, 2022
1 parent b10d3aa commit a571ae2
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
- docs/*
- '**/*.html'
- '**/*.md'
version: '3.24.0.{build}'
version: '3.24.1.{build}'
skip_tags: true
image: Visual Studio 2019
clone_folder: c:\project\gallifrey
Expand Down
7 changes: 7 additions & 0 deletions src/Gallifrey.UI.Modern/ChangeLog.xml
Original file line number Diff line number Diff line change
Expand Up @@ -850,6 +850,13 @@
<Other>Update domain</Other>
</Others>
</Version>
<Version Number="3.24.1.0">
<Features />
<Bugs>
<Bug>Fix website link opening</Bug>
</Bugs>
<Others />
</Version>
<!--
Template for VNext if not present above
<Version Number="0.0.0.0" Name="Pre-Release">
Expand Down
2 changes: 1 addition & 1 deletion src/Gallifrey.UI.Modern/MainViews/BottomBar.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ private void Hyperlink_RequestNavigate(object sender, RequestNavigateEventArgs e
{
var uri = e.Uri.AbsoluteUri;

if (uri.ToLower().Contains("gallifreyapp.co.uk/donations"))
if (uri.ToLower().Contains("gallifrey.blyth.me.uk/donations"))
{
ModelHelpers.Gallifrey.TrackEvent(TrackingType.DonateClick);
}
Expand Down

0 comments on commit a571ae2

Please sign in to comment.