Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
5andr0 committed Aug 8, 2016
2 parents 94f3fab + 1a495bf commit 1f73ca6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions PogoLocationFeeder.GUI/MainWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<Grid>
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition Height="25" />
<RowDefinition Height="30" />
</Grid.RowDefinitions>
<materialDesign:Transitioner SelectedIndex="{Binding TransitionerIndex}">
<views1:MainView />
Expand All @@ -41,8 +41,8 @@
</TextBlock>
<StackPanel Grid.Row="1" Orientation="Horizontal" HorizontalAlignment="Right">
<Label>Want a validated feed? Consider Donating via </Label>
<Button Height="23" Command="{Binding PayPalCommand}">PayPal</Button>
<Button Height="23" Command="{Binding BitcoinCommand}" Margin="5,0,-2,0">Bitcoin</Button>
<Button Height="25" Command="{Binding PayPalCommand}" Padding="16, 2">PayPal</Button>
<Button Height="25" Command="{Binding BitcoinCommand}" Padding="16, 2" Margin="5,0">Bitcoin</Button>
</StackPanel>
</Grid>
</controls:MetroWindow>
1 change: 1 addition & 0 deletions PogoLocationFeeder/Helper/MessageCache.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ private static bool IsSentAlready(SniperInfo sniperInfo)
var coordinates = GetCoordinatesString(sniperInfo);
if (MemoryCache.Default.Contains(coordinates))
{
Log.Debug($"Skipping duplicate {sniperInfo}");
return true;
}
var expirationDate = sniperInfo.ExpirationTimestamp != default(DateTime)
Expand Down

0 comments on commit 1f73ca6

Please sign in to comment.