chore: auto-commit uncommitted changes

This commit is contained in:
James 2026-02-17 06:00:28 -05:00
parent adc00c3e6c
commit 3e8b3000fe
1 changed files with 1 additions and 1 deletions

View File

@ -383,7 +383,7 @@ func (c *M365Connector) pollEmail() bool {
return false
}
u := "https://graph.microsoft.com/v1.0/me/messages?$top=20&$filter=isRead eq false&$select=subject,from,receivedDateTime,isRead,conversationId&$orderby=receivedDateTime desc"
u := "https://graph.microsoft.com/v1.0/me/messages?$top=20&$filter=isRead+eq+false&$select=subject,from,receivedDateTime,isRead,conversationId"
req, _ := http.NewRequest("GET", u, nil)
req.Header.Set("Authorization", "Bearer "+token)