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 96222fe commit 415adbeCopy full SHA for 415adbe
src/main/java/io/ipgeolocation/api/GeolocationTimezone.java
@@ -45,6 +45,6 @@ public Double getDSTSavings() {
45
46
@Override
47
public String toString() {
48
- return String.format("name: '%s' \noffset: '%s' \ncurrent_time: '%s' \ncurrent_time_unix: '%s' \nis_dst: '%b' \ndst_savings: '%s'", name, offset, currentTime, currentTimeUnix, isDST, dstSavings);
+ return String.format("name: '%s' \noffset: '%s' \ncurrent_time: '%s' \ncurrent_time_unix: '%f' \nis_dst: '%b' \ndst_savings: '%s'", name, offset, currentTime, currentTimeUnix, isDST, dstSavings);
49
}
50
0 commit comments