Skip to content
This repository was archived by the owner on Aug 2, 2025. It is now read-only.
This repository was archived by the owner on Aug 2, 2025. It is now read-only.

time not being extracted #30

@holtzermann17

Description

@holtzermann17

Config:

GNU Emacs 26.3 (build 1, x86_64-pc-linux-gnu, GTK+ Version 3.22.30) of 2019-12-03
Org mode version 9.1.9 (release_9.1.9-65-g5e4542 @ /snap/emacs/current/usr/share/emacs/26.3/lisp/org/)

Repro:

I used a minimal .emacs file for testing, after installing the package from MELPA.

(when (>= emacs-major-version 24)
  (require 'package)
  (add-to-list 'package-archives '("melpa" . "http://melpa.milkbox.net/packages/") t)
  (package-initialize)
  )

(require 'org-wild-notifier)
(org-wild-notifier-mode t)
(setq org-wild-notifier-alert-time 1)

(setq org-agenda-files '("~/org-files/"))
(setq org-agenda-diary-file "~/org-files/work.org")

I have tried to set up notifications for a repeating event like this (in work.org)

* Repeating
** TODO 16:00 Attend Standup 
   SCHEDULED: <%%(let ((dayname (calendar-day-of-week date))) (memq dayname '(1 2 3 4 5)))> 
   :PROPERTIES:
   :WILD_NOTIFIER_NOTIFY_BEFORE: 5
   :END:

I can't get the package to emit notifications. When I look at a trace, it seems the "time" data is not being extracted properly.

1 -> (org-wild-notifier--check-event ((times nil) (title . "16:00 Attend Standup") (intervals 10 5)))
1 <- org-wild-notifier--check-event: nil

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions