操作
バグ #1523
完了gtk3: mastodon の「user について」タブの toots/day の表示がおかしい
プラグイン名:
mastodon_account_viewer
クラッシュする:
いいえ
ファイル
Izumi Tsutsui さんが約3年前に更新
708509590 のリファクタリングの意図をつかめてませんが
diff --git a/plugin/mastodon_account_viewer/mastodon_account_viewer.rb b/plugin/mastodon_account_viewer/mastodon_account_viewer.rb
index 5d0b21e3..dab57b58 100644
--- a/plugin/mastodon_account_viewer/mastodon_account_viewer.rb
+++ b/plugin/mastodon_account_viewer/mastodon_account_viewer.rb
@@ -17,7 +17,7 @@ Plugin.create(:mastodon_account_viewer) do
}
param_toot_count = {
count: user.statuses_count,
- toots_per_day: since_day == 0 ? user.statuses_count : '%{avg}.2f' % { avg: Rational(user.statuses_count, since_day).to_f }
+ toots_per_day: since_day == 0 ? user.statuses_count : '%{avg}' % { avg: Rational(user.statuses_count, since_day).to_f.round(2) }
}
[
[_('名前'), user.display_name],
もしくはリファクタリング前と同様に
diff --git a/plugin/mastodon_account_viewer/mastodon_account_viewer.rb b/plugin/mastodon_account_viewer/mastodon_account_viewer.rb
index 5d0b21e3..cfe8d735 100644
--- a/plugin/mastodon_account_viewer/mastodon_account_viewer.rb
+++ b/plugin/mastodon_account_viewer/mastodon_account_viewer.rb
@@ -17,7 +17,7 @@ Plugin.create(:mastodon_account_viewer) do
}
param_toot_count = {
count: user.statuses_count,
- toots_per_day: since_day == 0 ? user.statuses_count : '%{avg}.2f' % { avg: Rational(user.statuses_count, since_day).to_f }
+ toots_per_day: since_day == 0 ? user.statuses_count : "%.2f" % (Rational(user.statuses_count, since_day).to_f)
}
[
[_('名前'), user.display_name],
でいいんですかね。
avg:
の意図を把握できてませんが。Shibafu Midorino さんが約3年前に更新
- ステータス を 実装待ち から レビュー待ち に変更
- 担当者 を Shibafu Midorino から Izumi Tsutsui に変更
- ブランチ を topic/1523-avoid-sprintf にセット
Shibafu Midorino さんが約3年前に更新
リグレッションと判断したので、修正後の表示確認をお願いします。
(でも仕様確認だったらtoshi_aさん案件だったのかなあ)
Izumi Tsutsui さんが約3年前に更新
- ステータス を レビュー待ち から マージ待ち に変更
topic/1523-avoid-sprintf が pull できない謎にハマりつつ
適当に手動マージして動作はOKです。
としぁさんのこだわりがあるかどうかは、何かあればマージした後に適当に直してもらう、でいいような。
(見た目を直すのが先と思うので)
操作