mirror of
https://github.com/nextcloud/talk-android.git
synced 2024-11-23 13:35:33 +03:00
Add regular link type
Signed-off-by: Mario Danic <mario@lovelyhq.com>
This commit is contained in:
parent
4b530dbf6a
commit
0d6df931ea
1 changed files with 3 additions and 0 deletions
|
@ -49,6 +49,7 @@ public final class TextMatchers {
|
|||
|
||||
public enum SpecialURLType {
|
||||
NONE,
|
||||
REGULAR,
|
||||
GIPHY,
|
||||
TENOR,
|
||||
}
|
||||
|
@ -70,6 +71,8 @@ public final class TextMatchers {
|
|||
if (pattern.matcher(specialLink).matches()) {
|
||||
return SpecialURLType.TENOR;
|
||||
}
|
||||
} else {
|
||||
return SpecialURLType.REGULAR;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue