Actions
バグ #1523
closedgtk3: mastodon の「user について」タブの toots/day の表示がおかしい
プラグイン名:
mastodon_account_viewer
クラッシュする:
No
Files
Updated by Izumi Tsutsui about 3 years ago
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:
の意図を把握できてませんが。Updated by Shibafu Midorino about 3 years ago
- Status changed from 分類待ち to 実装待ち
- Assignee set to Shibafu Midorino
Updated by Shibafu Midorino about 3 years ago
- Status changed from 実装待ち to レビュー待ち
- Assignee changed from Shibafu Midorino to Izumi Tsutsui
- ブランチ set to topic/1523-avoid-sprintf
Updated by Shibafu Midorino about 3 years ago
リグレッションと判断したので、修正後の表示確認をお願いします。
(でも仕様確認だったらtoshi_aさん案件だったのかなあ)
Updated by Izumi Tsutsui about 3 years ago
- Status changed from レビュー待ち to マージ待ち
topic/1523-avoid-sprintf が pull できない謎にハマりつつ
適当に手動マージして動作はOKです。
としぁさんのこだわりがあるかどうかは、何かあればマージした後に適当に直してもらう、でいいような。
(見た目を直すのが先と思うので)
Actions