Skip to content

Commit dff9cc5

Browse files
authored
Update src/core/time.ts
1 parent 7e9c140 commit dff9cc5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/time.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ export class TimeValue {
223223
}
224224

225225
isForever(): boolean {
226-
if (this.seconds === Number.MAX_SAFE_INTEGER && this.nanoseconds === 0) {
226+
if (this.seconds === Number.MAX_SAFE_INTEGER) {
227227
return true;
228228
} else {
229229
return false;

0 commit comments

Comments
 (0)