diff --git a/CHANGELOG.md b/CHANGELOG.md
index fe90b9d..939ec78 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,7 @@
- BugFix:
- Fehler in der Namespace-Unterstützung (Dateistruktur, Cronjob-Registrierung) bereinigt.
+ - behebt [#143](https://github.com/FriendsOfREDAXO/geolocation/issues/143) (@tyrant88)
## 25.06.2023 2.1.2
diff --git a/lib/asset_packer.php b/lib/asset_packer.php
index 17d024f..6358736 100644
--- a/lib/asset_packer.php
+++ b/lib/asset_packer.php
@@ -3,7 +3,7 @@
* AssetPacker - Support für REDAXO-Addons
*
* @author Christoph Böcker
- * @version 1.3.3
+ * @version 1.3.4
* @copyright Christoph Böcker
* @license Die AssetPacker-Klassen: MIT-License
* Die JS-Minifier-Klasse: BSD 3-Clause License
@@ -461,7 +461,9 @@ public function minify( string $content ) : string
public function getTag( string $media = 'all' ) : string
{
// Pathname relativ zu rex_path
- $asset = \rex_url::base( \rex_path::relative( $this->target ) );
+ // für Windows: \ in / ändern
+ $asset = str_replace('\\','/',\rex_path::relative( $this->target));
+ $asset = \rex_url::base( $asset );
if (!\rex::isDebugMode() && \rex::isBackend() && $this->timestamp)
{