Skip to content

Commit

Permalink
Fix name clashes
Browse files Browse the repository at this point in the history
  • Loading branch information
Cheesebaron committed Jun 4, 2024
1 parent 3d4c877 commit a1261b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Essentials/src/Preferences/Preferences.tizen.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ public void Set<T>(string key, T value, string sharedName)
{
Preference.Set(fullKey, dt.ToBinary());
}
else if (value is DateTimeOffset dt)
else if (value is DateTimeOffset dto)
{
Preference.Set(fullKey, dt.ToString("O"));
Preference.Set(fullKey, dto.ToString("O"));
}
else
Preference.Set(fullKey, value);
Expand Down

0 comments on commit a1261b1

Please sign in to comment.