We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a25b9a commit 04d4987Copy full SHA for 04d4987
OpenBullet2.Core/Helpers/Mapper.cs
@@ -14,7 +14,7 @@ public static class Mapper
14
Country = proxy.Country,
15
Host = proxy.Host,
16
Port = proxy.Port,
17
- LastChecked = proxy.LastChecked,
+ LastChecked = proxy.LastChecked.Value,
18
Username = proxy.Username,
19
Password = proxy.Password,
20
Ping = proxy.Ping,
OpenBullet2.Core/Models/Proxies/DatabaseProxyCheckOutput.cs
@@ -30,7 +30,7 @@ public async Task StoreAsync(Proxy proxy)
30
{
31
var entity = await _proxyRepo.GetAsync(proxy.Id);
32
entity.Country = proxy.Country;
33
- entity.LastChecked = proxy.LastChecked;
+ entity.LastChecked = proxy.LastChecked.Value;
34
entity.Ping = proxy.Ping;
35
entity.Status = proxy.WorkingStatus;
36
0 commit comments