mirror of
https://github.com/pppscn/SmsForwarder
synced 2024-11-04 06:00:11 +00:00
优化:去除 tg转发‘#‘号被替换为’井‘(issues #142)
This commit is contained in:
parent
30f9ed71a7
commit
6ca735cd1e
@ -43,8 +43,7 @@ public class SenderTelegramMsg extends SenderBaseMsg {
|
||||
return;
|
||||
}
|
||||
|
||||
//特殊处理避免标题重复
|
||||
final String finalText = text.replaceAll("#", "井").trim();
|
||||
final String finalText = text.trim(); //.replaceAll("#", "井")
|
||||
|
||||
if (!apiToken.startsWith("http")) {
|
||||
apiToken = "https://api.telegram.org/bot" + apiToken + "/sendMessage";
|
||||
|
@ -10,7 +10,7 @@ buildscript {
|
||||
maven { url 'https://repo1.maven.org/maven2/' }
|
||||
}
|
||||
dependencies {
|
||||
classpath 'com.android.tools.build:gradle:7.1.2'
|
||||
classpath 'com.android.tools.build:gradle:7.1.3'
|
||||
classpath 'com.chenenyu:img-optimizer:1.2.0'
|
||||
}
|
||||
}
|
||||
|
@ -1,3 +1,3 @@
|
||||
#Fri Jul 16 10:33:23 CST 2021
|
||||
versionName=2.5.0
|
||||
versionCode=38
|
||||
versionName=2.4.4
|
||||
versionCode=37
|
||||
|
Loading…
Reference in New Issue
Block a user