summaryrefslogtreecommitdiff
path: root/src/til.c
diff options
context:
space:
mode:
authorVito Caputo <vcaputo@pengaru.com>2023-08-03 17:12:05 -0700
committerVito Caputo <vcaputo@pengaru.com>2023-08-03 17:29:36 -0700
commit802e366db7049f1d8fdab6f38f968bcf0c55b3ae (patch)
treee00dccf493244c2435c38974c030bb900c91b70b /src/til.c
parent119e3805c1c3a50efb41056a830bc32a8fdec3ae (diff)
*: nested settings should get the raw value
When creating nested setting instances, just pass down the full raw value so if there's any prefix on the value it can be realized as a prefix for the first entry in the nested instance.
Diffstat (limited to 'src/til.c')
-rw-r--r--src/til.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/til.c b/src/til.c
index b660d2f..4629dd7 100644
--- a/src/til.c
+++ b/src/til.c
@@ -719,7 +719,7 @@ int til_module_setup_randomize(const til_module_t *module, til_settings_t *setti
break;
}
- setting->value_as_nested_settings = til_settings_new(NULL, desc->container, desc->spec.key ? : label, setting->value);
+ setting->value_as_nested_settings = til_settings_new(NULL, desc->container, desc->spec.key ? : label, til_setting_get_raw_value(setting));
free(label);
if (!setting->value_as_nested_settings) {
© All Rights Reserved