Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Better description for AddEssenceViewerToGroupSettingsHook.java #821

Merged
merged 1 commit into from
Feb 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,13 @@ private AddEssenceViewerToGroupSettingsHook() {
@NonNull
@Override
public String getName() {
return "在群设置页添加精华消息入口 (TIM)";
return "在群设置页添加精华消息入口";
}

@NonNull
@Override
public String getDescription() {
return "本功能仅针对 TIM 用户\n如果打开后的列表为空,可能是由于 p_skey 不在内置浏览器的 Cookie 内,可以尝试打开群机器人页面,随意点击一个资料卡以解决(即使网页提示错误)\n不保证永久可用";
}

@NonNull
Expand All @@ -68,6 +74,7 @@ public String[] getUiItemLocation() {
}

// 根据 Lcom/tencent/mobileqq/activity/ChatSettingForTroop; 进行编写
// 感谢 klxiaoniu 大佬对本功能进行的修复和改善 :)
@Override
public boolean initOnce() throws Exception {
// 第一次写这么复杂的功能
Expand Down
Loading