Compare commits

..

No commits in common. "a1364c9aff345147a9942ac4d091a8a8e4d9f577" and "055c1df7a27f5f74a7ac88ce42f9512ff2a1f419" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View File

@ -82,7 +82,7 @@ async function getUnreadEmails(account) {
const gmail = google.gmail({ version: 'v1', auth: account.client });
const res = await gmail.users.messages.list({
userId: 'me',
q: '-label:AGENT_READ newer_than:2d',
q: 'is:unread -label:AGENT_READ',
maxResults: 10
});

View File

@ -31,7 +31,7 @@ WORKDIR /app
COPY package*.json ./
# Install dependencies
RUN npm install --omit=dev && npx puppeteer browsers install chrome
RUN npm install --omit=dev
# Copy project files
COPY . .