mirror of
https://github.com/JonasunderscoreJones/dayz-linux-gui-launcher.git
synced 2025-10-23 18:59:20 +02:00
fix: translate base64 +
chars to _
(#17)
This fixes mods not being loaded by the DayZ client where the calculated base64 string of the modID includes a + character.
This commit is contained in:
parent
c8612b367b
commit
00d77a0133
1 changed files with 1 additions and 1 deletions
|
@ -202,7 +202,7 @@ dec2base64() {
|
||||||
}
|
}
|
||||||
' \
|
' \
|
||||||
| base64 \
|
| base64 \
|
||||||
| sed 's|/|-|g; s|=||g'
|
| sed 's|/|-|g; s|+|_|g; s|=||g'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue