Skip to content

Commit

Permalink
fix missing root prefix for msapplication-TileImage
Browse files Browse the repository at this point in the history
  • Loading branch information
frederikbosch committed Aug 1, 2023
1 parent 5decefa commit 266c884
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/MicrosoftTilePackage.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public function headTags(\DOMDocument $document, WebApplicationManifest $manifes
$defaultSize = $this->sizes[\array_key_first($this->sizes)];
$meta = $document->createElement('meta');
$meta->setAttribute('name', 'msapplication-TileImage');
$meta->setAttribute('content', 'mstile-' . $defaultSize . 'x' . $defaultSize . '.png');
$meta->setAttribute('content', $rootPrefix . '/mstile-' . $defaultSize . 'x' . $defaultSize . '.png');
yield $meta;
}
}

0 comments on commit 266c884

Please sign in to comment.