Skip to content

Commit

Permalink
Fix downloading pack
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeDoctorDE committed Nov 22, 2024
1 parent f395f10 commit acafa3f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions app/lib/services/file_system.dart
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,8 @@ class SetonixFileSystem {
if (identifier != expectedIdentifier) {
return PackDownloadResult.invalidIdentifier;
}
await packSystem.fileSystem
.updateFile(expectedIdentifier, response.bodyBytes);
await packSystem.updateFile(
expectedIdentifier, SetonixFile(response.bodyBytes));
await dataInfoSystem.updateFile(
expectedIdentifier,
DataMetadata(
Expand Down
4 changes: 2 additions & 2 deletions app/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -671,8 +671,8 @@ packages:
dependency: "direct main"
description:
path: "packages/lw_file_system"
ref: "49102e314ceeef0c532213411b5e233fb5732726"
resolved-ref: "49102e314ceeef0c532213411b5e233fb5732726"
ref: "2e1d530b67957af65908cc6288b86bc5313b5e24"
resolved-ref: "2e1d530b67957af65908cc6288b86bc5313b5e24"
url: "https://github.com/LinwoodDev/dart_pkgs"
source: git
version: "1.0.0"
Expand Down
2 changes: 1 addition & 1 deletion app/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ dependencies:
lw_file_system:
git:
url: https://github.com/LinwoodDev/dart_pkgs
ref: 49102e314ceeef0c532213411b5e233fb5732726
ref: 2e1d530b67957af65908cc6288b86bc5313b5e24
path: packages/lw_file_system
lw_sysapi:
git:
Expand Down

0 comments on commit acafa3f

Please sign in to comment.