We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7ea4aa commit 8f4ee6fCopy full SHA for 8f4ee6f
app/src/main/java/com/noobexon/xposedfakelocation/manager/ui/drawer/DrawerContent.kt
@@ -53,7 +53,11 @@ fun DrawerContent(
53
DrawerItem(
54
icon = LineAwesomeIcons.Discord,
55
label = "Discord",
56
- onClick = { Toast.makeText(context, "Coming soon!", Toast.LENGTH_SHORT).show() }
+ onClick = {
57
+ val intent = Intent(Intent.ACTION_VIEW, Uri.parse("https://discord.gg/8eCRU3KzVS"))
58
+ context.startActivity(intent)
59
+ onCloseDrawer()
60
+ }
61
)
62
63
icon = LineAwesomeIcons.Github,
0 commit comments