クラッシュレポート対応
This commit is contained in:
parent
5a6b42b06e
commit
448472cbbd
|
@ -42,7 +42,7 @@ fun ActMain.tagDialog(
|
||||||
pos: Int,
|
pos: Int,
|
||||||
// タグのURL
|
// タグのURL
|
||||||
// URLのホスト部分は普通はaccessInfoと同じだが、検索などでバラバラになる場合がある
|
// URLのホスト部分は普通はaccessInfoと同じだが、検索などでバラバラになる場合がある
|
||||||
url: String,
|
url: String?,
|
||||||
// タグのHost。
|
// タグのHost。
|
||||||
// 普通はaccessInfoと同じだが、検索などでバラバラになる場合がある
|
// 普通はaccessInfoと同じだが、検索などでバラバラになる場合がある
|
||||||
host: Host,
|
host: Host,
|
||||||
|
@ -166,7 +166,7 @@ fun ActMain.tagTimelineFromAccount(
|
||||||
pos: Int,
|
pos: Int,
|
||||||
// タグのURL
|
// タグのURL
|
||||||
// URLのホスト部分は普通はaccessInfoと同じだが、検索などでバラバラになる場合がある
|
// URLのホスト部分は普通はaccessInfoと同じだが、検索などでバラバラになる場合がある
|
||||||
url: String,
|
url: String?,
|
||||||
// タグのHost。
|
// タグのHost。
|
||||||
// 普通はaccessInfoと同じだが、検索などでバラバラになる場合がある
|
// 普通はaccessInfoと同じだが、検索などでバラバラになる場合がある
|
||||||
host: Host,
|
host: Host,
|
||||||
|
@ -209,8 +209,10 @@ fun ActMain.tagTimelineFromAccount(
|
||||||
}
|
}
|
||||||
|
|
||||||
// ブラウザで表示する
|
// ブラウザで表示する
|
||||||
dialog.addAction(getString(R.string.open_web_on_host, host)) {
|
if (!url.isNullOrBlank()) {
|
||||||
openCustomTab(url)
|
dialog.addAction(getString(R.string.open_web_on_host, host)) {
|
||||||
|
openCustomTab(url)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// 同タンスのアカウントがない場合は疑似アカウントを作成して開く
|
// 同タンスのアカウントがない場合は疑似アカウントを作成して開く
|
||||||
|
|
|
@ -296,7 +296,7 @@ private fun ItemViewHolder.clickTag(pos: Int, item: TimelineItem?) {
|
||||||
tagDialog(
|
tagDialog(
|
||||||
accessInfo,
|
accessInfo,
|
||||||
pos,
|
pos,
|
||||||
item.url!!,
|
item.url,
|
||||||
accessInfo.apiHost,
|
accessInfo.apiHost,
|
||||||
item.name,
|
item.name,
|
||||||
tagInfo = item,
|
tagInfo = item,
|
||||||
|
|
Loading…
Reference in New Issue