mirror of
https://github.com/immich-app/immich
synced 2026-08-15 13:03:57 +00:00
refactor(mobile): Migrate durationInSeconds to durationMs (#26615)
This commit is contained in:
parent
f68cd424a7
commit
539a39ae49
59 changed files with 15098 additions and 705 deletions
|
|
@ -32,7 +32,7 @@ class PlatformAsset {
|
|||
final int? updatedAt;
|
||||
final int? width;
|
||||
final int? height;
|
||||
final int durationInSeconds;
|
||||
final int durationMs;
|
||||
final int orientation;
|
||||
final bool isFavorite;
|
||||
|
||||
|
|
@ -50,7 +50,7 @@ class PlatformAsset {
|
|||
this.updatedAt,
|
||||
this.width,
|
||||
this.height,
|
||||
this.durationInSeconds = 0,
|
||||
this.durationMs = 0,
|
||||
this.orientation = 0,
|
||||
this.isFavorite = false,
|
||||
this.adjustmentTime,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue