mirror of
https://github.com/clearlinux/linux-steam-integration.git
synced 2026-09-06 22:01:27 +00:00
intercept: Handle /steamapps paths for #41
Signed-off-by: Ikey Doherty <ikey@solus-project.com>
This commit is contained in:
@@ -596,7 +596,8 @@ char *lsi_blacklist_vendor(unsigned int flag, const char *name)
|
||||
}
|
||||
|
||||
/* Find out if its a Steam private lib.. These are relative "./" files too! */
|
||||
if (name && (strstr(name, "/Steam/") || strncmp(name, "./", 2) == 0)) {
|
||||
if (name && (strstr(name, "/Steam/") || strstr(name, "/steamapps/") ||
|
||||
strncmp(name, "./", 2) == 0)) {
|
||||
for (size_t i = 0; i < ARRAY_SIZE(vendor_blacklist); i++) {
|
||||
if (!strstr(name, vendor_blacklist[i])) {
|
||||
continue;
|
||||
|
||||
Reference in New Issue
Block a user