fix
This commit is contained in:
parent
157368b611
commit
d78d1fc07a
2 changed files with 2 additions and 1 deletions
|
@ -55,4 +55,5 @@ func ReplaceUmlauts(s string) ret string {
|
||||||
ret = strings.Replace(ret, "ö", "oe", -1)
|
ret = strings.Replace(ret, "ö", "oe", -1)
|
||||||
ret = strings.Replace(ret, "ü", "ue", -1)
|
ret = strings.Replace(ret, "ü", "ue", -1)
|
||||||
ret = strings.Replace(ret, "ß", "ss", -1)
|
ret = strings.Replace(ret, "ß", "ss", -1)
|
||||||
|
return
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
package version
|
package version
|
||||||
const Version = "109"
|
const Version = "110"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue