Skip to content

Commit

Permalink
汐洛链滴社区客户端 #57
Browse files Browse the repository at this point in the history
  • Loading branch information
Soltus committed May 24, 2024
1 parent 0aeac1a commit 2ebdb47
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions app/src/main/java/org/b3log/siyuan/ld246/Home.kt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ import androidx.activity.OnBackPressedCallback
import androidx.activity.compose.setContent
import androidx.compose.foundation.background
import androidx.compose.foundation.clickable
import androidx.compose.foundation.layout.Arrangement
import androidx.compose.foundation.layout.Box
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.Row
Expand Down Expand Up @@ -724,7 +723,7 @@ class HomeActivity : ComponentActivity() {
modifier = Modifier.padding(bottom = 70.dp) // 避免被底栏遮住
) {
item {
v!!.forEach { notification ->
v?.forEach { notification ->
NotificationCard(notification)
}
}
Expand Down Expand Up @@ -1038,7 +1037,6 @@ class HomeActivity : ComponentActivity() {
val webView = dialog.getCustomView()?.findViewById<WebView>(R.id.webView)
Log.w(fullScreenDialog.toString(), webView.toString())
webView?.loadUrl(url)
dialog.refreshUI()
}
}
}
Expand Down

0 comments on commit 2ebdb47

Please sign in to comment.