Skip to content

Commit

Permalink
Quick fix for damaku receiver
Browse files Browse the repository at this point in the history
  • Loading branch information
Hendrix-Shen committed Jun 3, 2022
1 parent f2bd91e commit fde37bc
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ public String deserialize(JsonElement json, Type typeOfT, JsonDeserializationCon
}
break;
default:
if (type.contains("DANMU_MSG") && Configs.chatDanmakuEnable) {
return MessageHandler.handleDanmaku(data);
}
}
}
return null;
Expand Down

0 comments on commit fde37bc

Please sign in to comment.