From e6f27fca360dffe4d5210569d8a7d12cb0732bee Mon Sep 17 00:00:00 2001
From: si458 <simonsmith5521@gmail.com>
Date: Thu, 1 Feb 2024 14:40:55 +0000
Subject: [PATCH] fix 2nd line also showing drive name #1892

Signed-off-by: si458 <simonsmith5521@gmail.com>
---
 views/default.handlebars | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/views/default.handlebars b/views/default.handlebars
index 8730368e..46c60e30 100644
--- a/views/default.handlebars
+++ b/views/default.handlebars
@@ -11058,7 +11058,7 @@
                     h = '<div class=filelist file=999>';
                     h += '<input file=999 style=float:left name=fd class=fcb type=checkbox onchange=p13setActions() value=\'' + f.nx + '\'>&nbsp;<span style=float:right title="' + title + '">' + right + '</span>';
                     h += '<span><div class=fileIcon' + (f.dt == 'REMOVABLE' ? 5 : (f.dt == 'CDROM' ? 6 : f.t)) + ' onclick=p13folderset("' + encodeURIComponentEx(f.nx) + '")></div><a href=# style=cursor:pointer onclick=\'return p13folderset("' + encodeURIComponentEx(f.nx) + '")\'>';
-                    if (isWindowsNode(currentNode) && currentNode.volumes && currentNode.volumes[shortname.charAt(0).toUpperCase()] && currentNode.volumes[shortname.charAt(0).toUpperCase()].name) {
+                    if (isWindowsNode(currentNode) && f.dt && currentNode.volumes && currentNode.volumes[shortname.charAt(0).toUpperCase()] && currentNode.volumes[shortname.charAt(0).toUpperCase()].name) {
                         h += currentNode.volumes[shortname.charAt(0).toUpperCase()].name + " (" + shortname + ")";
                     } else {
                         h += shortname;