Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
Juby210 committed Feb 10, 2024
1 parent deee8d7 commit 717f657
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class NewProfiles : Plugin() {
val profile = model.userProfile
if (profile is RNUserProfile) {
val themeColors = profile.guildMemberProfile?.run { themeColors ?: accentColor?.let { c -> intArrayOf(c, c) } }
?: profile.userProfile.run { themeColors ?: accentColor?.let { c -> intArrayOf(c, c) } } ?: return@after
?: profile.userProfile?.run { themeColors ?: accentColor?.let { c -> intArrayOf(c, c) } } ?: return@after
val binding = WidgetUserSheet.`access$getBinding$p`(this)
val actionsContainer = binding.D
val root = actionsContainer.parent.parent.parent as NestedScrollView
Expand Down

0 comments on commit 717f657

Please sign in to comment.