feat: 修改数据库名称为接收组;增强错误处理,添加错误日志输出

This commit is contained in:
zhaoyingbo 2025-01-17 13:04:31 +00:00
parent 68f2e322a4
commit d7bd5a9199
2 changed files with 3 additions and 2 deletions

View File

@ -4,7 +4,7 @@ import { AppInfoModel } from "../../constant/config"
import { managePbError } from "../../utils/pbTools"
import pbClient from "../pbClient"
const DB_NAME = "message_group"
const DB_NAME = "receiveGroup"
export interface ReceiveGroup {
name: string

View File

@ -16,7 +16,8 @@ export const managePbError = async <T>(
): Promise<T | null> => {
try {
return await dbFunc()
} catch {
} catch (err: any) {
console.error(err)
return defaultVal || null
}
}