From c72ef5f405bd7fc3c7980590457a9368671d553d Mon Sep 17 00:00:00 2001
From: Bakugo <bakugo@b4k.co>
Date: Mon, 1 Jul 2019 07:31:32 +0100
Subject: [PATCH] file_sys/registered_cache: Improve missing metadata error

This can happen when installing NSPs too, not just XCIs.
---
 src/core/file_sys/registered_cache.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/core/file_sys/registered_cache.cpp b/src/core/file_sys/registered_cache.cpp
index 46f9314d0..dfde04dd6 100644
--- a/src/core/file_sys/registered_cache.cpp
+++ b/src/core/file_sys/registered_cache.cpp
@@ -397,8 +397,8 @@ InstallResult RegisteredCache::InstallEntry(const NSP& nsp, bool overwrite_if_ex
     });
 
     if (meta_iter == ncas.end()) {
-        LOG_ERROR(Loader, "The XCI you are attempting to install does not have a metadata NCA and "
-                          "is therefore malformed. Double check your encryption keys.");
+        LOG_ERROR(Loader, "The file you are attempting to install does not have a metadata NCA and "
+                          "is therefore malformed. Check your encryption keys.");
         return InstallResult::ErrorMetaFailed;
     }