Skip to content

Commit

Permalink
Misskey: ファイルが画像でない場合 blurhash がないので、
Browse files Browse the repository at this point in the history
isSensitive なら仕方ないのでテキストで代替しておく。
レンダリングが崩れるのはそのうちなんとかしたい。
  • Loading branch information
isaki68k committed Oct 14, 2023
1 parent 7988edf commit 3a2388d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/Misskey.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -471,8 +471,10 @@ misskey_show_photo(const Json& f, int resize_width, int index)
if (isSensitive && opt_show_nsfw == false) {
auto blurhash = JsonAsString(f["blurhash"]);
if (blurhash.empty()) {
// どうする?
printf("[NSFW]\n");
// 画像でない場合は null になる。
// XXX レンダリングが崩れるのだが
auto type = JsonAsString(f["type"]);
printf("[NSFW] (%s)\n", type.c_str());
return false;
}
int width = 0;
Expand Down

0 comments on commit 3a2388d

Please sign in to comment.