Merge pull request #332 from bebehei/fieldlength-max

limit length of single fields in notification
This commit is contained in:
Nikos Tsipinakis 2017-07-09 19:46:31 +03:00 committed by GitHub
commit d206f2445f
3 changed files with 13 additions and 0 deletions

View File

@ -17,6 +17,7 @@
- Text and icons are now centred vertically
- Notifications aren't considered duplicate if urgency or icons differ
- The frame width and color settings were moved to the global section as frame\_width and frame\_color respectively.
- The maximum displayed field length is limited to 5000 characters
### Deprecated
- `allow_markup` will be removed in later versions. It is being replaced by `markup`

View File

@ -329,6 +329,16 @@ int notification_init(notification * n, int id)
n->msg = g_strchomp(n->msg);
/* truncate overlong messages */
if (strlen(n->msg) > DUNST_NOTIF_MAX_CHARS) {
char* buffer = g_malloc(DUNST_NOTIF_MAX_CHARS);
strncpy(buffer, n->msg, DUNST_NOTIF_MAX_CHARS);
buffer[DUNST_NOTIF_MAX_CHARS-1] = '\0';
g_free(n->msg);
n->msg = buffer;
}
if (n->icon != NULL && strlen(n->icon) <= 0) {
g_free(n->icon);
n->icon = NULL;

View File

@ -12,6 +12,8 @@
#define NORM 1
#define CRIT 2
#define DUNST_NOTIF_MAX_CHARS 5000
typedef struct _raw_image {
int width;
int height;