* 导入成功后静默尝试应用平台 owner profile(失败不影响导入流程)
(id: string)
| 728 | * 导入成功后静默尝试应用平台 owner profile(失败不影响导入流程) |
| 729 | */ |
| 730 | async function applyOwnerProfileAfterImport(id: string): Promise<void> { |
| 731 | try { |
| 732 | await tryApplyOwnerProfile(id) |
| 733 | } catch (error) { |
| 734 | console.warn('导入后应用 owner profile 失败:', error) |
| 735 | } |
| 736 | } |
| 737 | |
| 738 | // 置顶会话 ID 列表 |
| 739 | const pinnedSessionIds = ref<string[]>([]) |
no test coverage detected