Skip to content
This repository has been archived by the owner on Sep 22, 2024. It is now read-only.

Commit

Permalink
Support working on background #7
Browse files Browse the repository at this point in the history
fix parameter string typo
  • Loading branch information
iamalper committed Dec 9, 2023
1 parent f573335 commit 599d85e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/models.dart
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class DbFile {
DbFile.uploadedFromMap(Map<String, dynamic> map)
: name = map["name"],
fileStatus = DbFileStatus.upload,
time = DateTime.fromMillisecondsSinceEpoch(map["time"]),
time = DateTime.fromMillisecondsSinceEpoch(map["timeEpoch"]),
path = map["path"];

///Use this constructor for load an downloaded file infos from database.
Expand Down

0 comments on commit 599d85e

Please sign in to comment.