fix
This commit is contained in:
parent
157368b611
commit
d78d1fc07a
|
@ -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…
Reference in New Issue