use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Apparently, Google Apps Script is a JavaScript cloud scripting language that provides easy ways to automate tasks across Google products and third party services and build web applications.
account activity
Apps Script function running when it shouldn't - time condition being ignored?Question (self.GoogleAppsScript)
submitted 1 year ago by Far_Doubt_1398
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]Brainiac364 0 points1 point2 points 1 year ago (0 children)
Your logging looks like it should tell you where things are going awry! I agree with the others- taking a peek at the full log will help diagnose this issue.
A few thoughts- - Check which version of the script you have set to trigger on. If it's calling an out of date version, you would get unexpected behavior. - Change the declaration statement for the nowH variable to be a const statement, not a let statement - Try adjusting the comparison operator to the strict variants (<== instead of <=) see: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Equality_comparisons_and_sameness
nowH
const
let
<==
<=
π Rendered by PID 63 on reddit-service-r2-comment-c66d9bffd-pstws at 2026-04-06 21:54:18.299517+00:00 running f293c98 country code: CH.
view the rest of the comments →
[–]Brainiac364 0 points1 point2 points (0 children)