b4n left a comment (geany/geany#4298)
Looks like a pretty common issue when you look for `not-granted-666` on the
web, however, I'm not sure what it means.
Maybe you could try this and see if it helps?
```diff
diff --git a/src/libmain.c b/src/libmain.c
index 0a4f23ef2..c7980f033 100644
--- a/src/libmain.c
+++ b/src/libmain.c
@@ -1078,7 +1078,7 @@ gint main_lib(gint argc, gchar **argv)
* make a copy, since the value is not guaranteed to be valid after
calling
* unsetenv() (which is done by GTK). */
#ifdef HAVE_SOCKET
- gchar *desktop_startup_id = g_strdup(getenv("DESKTOP_STARTUP_ID"));
+ gchar *desktop_startup_id = NULL;
//g_strdup(getenv("DESKTOP_STARTUP_ID"));
if (!desktop_startup_id)
desktop_startup_id = g_strdup(getenv("XDG_ACTIVATION_TOKEN"));
#endif
```
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/4298#issuecomment-2867732852
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany/issues/4298/[email protected]>