操作
バグ #1046
未完了改行文字のみでも投稿可能状態になる
説明
改行のみではTwitterに投稿できないが、投稿ボタンが投稿可能状態になってしまっている。
toshi_a 初音 さんがほぼ7年前に更新
- ステータス を パッチ適用待ち から まだダメ に変更
- 対象バージョン を 3.5 から 3.6 に変更
そのあたりを3.6ではいじってしまっていて衝突してしまいました。
見てもらったらわかりやすいと思うんですが、spellのconditionを使って、各Worldに条件を移動してるので、これはTwitterプラグインに方に書く感じですかね
def postable?
<<<<<<< HEAD
not(widget_post.buffer.text.empty?) and (/[^\p{blank}]/ === widget_post.buffer.text) and Plugin[:gtk].compose?(current_world, to_display_only? ? nil : @to.first, visibility: @visibility)
=======
text = widget_post.buffer.text || ''
!text.delete("\n").strip.empty?
>>>>>>> 改行文字のみで投稿可能状態になってしまわないように修正 refs #1046
end
操作