mirror of
https://github.com/Corewala/Buran
synced 2025-03-11 06:33:20 +00:00
Removed %2F substitution in onLink
This commit is contained in:
parent
1542ec5539
commit
bfd2572cec
1 changed files with 1 additions and 1 deletions
|
@ -88,7 +88,7 @@ class GemActivity : AppCompatActivity() {
|
|||
if(longTap){
|
||||
var globalURI: String
|
||||
if(!uri.toString().contains("//")){
|
||||
globalURI = (omniTerm.getCurrent() + uri.toString()).replace("%2F", "/").replace("//", "/").replace("gemini:/", "gemini://")
|
||||
globalURI = (omniTerm.getCurrent() + uri.toString()).replace("//", "/").replace("gemini:/", "gemini://")
|
||||
} else {
|
||||
globalURI = uri.toString()
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue