Skip to content

Commit

Permalink
Merge pull request #72 from Spomky-Labs/bugs/fix-wrong-type
Browse files Browse the repository at this point in the history
Fix image and font fallbacks
  • Loading branch information
Spomky authored Feb 10, 2024
2 parents 87856cd + c092a3d commit c5ccefd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/scorecards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
# format to the repository Actions tab.
- name: "Upload artifact"
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
name: SARIF file
path: results.sarif
Expand Down
4 changes: 2 additions & 2 deletions src/Dto/Workbox.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ final class Workbox
public null|Url $pageFallback = null;

#[SerializedName('image_fallback')]
public null|Url $imageFallback = null;
public null|Asset $imageFallback = null;

#[SerializedName('font_fallback')]
public null|Url $fontFallback = null;
public null|Asset $fontFallback = null;

/**
* @var array<Url>
Expand Down

0 comments on commit c5ccefd

Please sign in to comment.