mirror of
				https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web.git
				synced 2025-11-04 16:23:41 +08:00 
			
		
		
		
	add null check for search content
This commit is contained in:
		@@ -36,6 +36,7 @@ export function SearchChatPage() {
 | 
			
		||||
 | 
			
		||||
      session.messages.forEach((message) => {
 | 
			
		||||
        const content = message.content as string;
 | 
			
		||||
        if (!content.toLowerCase || content === "") return;
 | 
			
		||||
        const lowerCaseContent = content.toLowerCase();
 | 
			
		||||
 | 
			
		||||
        // full text search
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user