Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions backend/app/api/frames.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,8 @@
ensure_buildroot_frame_defaults,
latest_buildroot_sd_image,
normalize_buildroot_platform,
resolve_buildroot_base_entry,
start_buildroot_sd_image,
try_resolve_buildroot_base_entry,
validate_buildroot_network,
validate_buildroot_wifi_credentials,
)
Expand Down Expand Up @@ -2378,7 +2378,7 @@ async def api_frame_buildroot_sd_image_status(id: int, db: Session = Depends(get
platform = normalize_buildroot_platform((frame.buildroot or {}).get("platform"))
except ValueError as exc:
_bad_request(str(exc))
base_entry = await resolve_buildroot_base_entry(platform)
base_entry = await try_resolve_buildroot_base_entry(platform)
return {
"sdImage": latest_buildroot_sd_image(frame, base_entry)
or {
Expand Down
Loading
Loading