TagTree Show file name for tag_title [UNTAGGED]

fallback to filename as [UNTAGGED] is a terrible way to browse titles

Change-Id: Ifcdc4c27562339b8a916313fb946c88c4eba3b5a
This commit is contained in:
William Wilgus 2022-02-25 22:54:47 -05:00
parent 836616b937
commit 887249671c

View file

@ -1584,6 +1584,19 @@ static int retrieve_entries(struct tree_context *c, int offset, bool init)
if (strcmp(tcs.result, UNTAGGED) == 0)
{
if (tag == tag_title) /* Fallback to filename */
{
char *lastname = dptr->name;
dptr->name = core_get_data(c->cache.name_buffer_handle)+namebufused;
if (tagcache_retrieve(&tcs, tcs.idx_id, tag_filename, dptr->name,
c->cache.name_buffer_size - namebufused))
{
namebufused += strlen(dptr->name)+1;
goto entry_skip_formatter;
}
dptr->name = lastname; /* restore last entry if filename failed */
}
tcs.result = str(LANG_TAGNAVI_UNTAGGED);
tcs.result_len = strlen(tcs.result);
tcs.ramresult = true;
@ -1632,6 +1645,7 @@ static int retrieve_entries(struct tree_context *c, int offset, bool init)
else
dptr->name = tcs.result;
entry_skip_formatter:
dptr++;
current_entry_count++;