修复:bark发送通道的url参数无效

This commit is contained in:
pppscn 2022-02-13 17:07:51 +08:00
parent 70edc8036e
commit 5d25425781
2 changed files with 1 additions and 1 deletions

View File

@ -56,6 +56,7 @@ public class SenderBarkMsg extends SenderBaseMsg {
if (!TextUtils.isEmpty(level)) builder.addFormDataPart("level", level);
if (!TextUtils.isEmpty(sound)) builder.addFormDataPart("sound", sound);
if (!TextUtils.isEmpty(badge)) builder.addFormDataPart("badge", badge);
if (!TextUtils.isEmpty(url)) builder.addFormDataPart("url", url);
int isCode = content.indexOf("验证码");
int isPassword = content.indexOf("动态密码");

View File

@ -7,7 +7,6 @@
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="actionOverflowMenuStyle">@style/OverflowMenu</item>
<item name="android:textColor">@color/white</item>
</style>
<style name="OverflowMenu" parent="Base.Widget.AppCompat.PopupMenu.Overflow">