Skip to content

Commit

Permalink
1、修复高版本精简后的底部Tab发现与我的
Browse files Browse the repository at this point in the history
  • Loading branch information
nining377 committed Oct 26, 2021
1 parent 156850e commit 5d8417e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ public static void startScript(Context context) {
private static void getLogcatInfo(int level, String tag, String text) {
if (level != 4 || text.contains("lock"))
return;
if ((text.contains("mERROR") && text.contains("Error:")) || text.contains("Port ") || text.contains("Please ")) {
if ((!text.contains("mERROR") && text.contains("Error:")) || text.contains("Port ") || text.contains("Please ")) {
Intent intent = new Intent(Hook.msg_send_notification);
intent.putExtra("message", text);
intent.putExtra("title", "UnblockNeteaseMusic产生致命错误");
Expand Down

0 comments on commit 5d8417e

Please sign in to comment.