1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-28 23:16:32 -04:00

Fix file browser when files should be included

This commit is contained in:
Mark McDowall
2019-03-23 13:03:39 -07:00
parent b63cbbdaaa
commit c3a6e01040
3 changed files with 12 additions and 4 deletions
+4 -2
View File
@@ -46,14 +46,16 @@ export const actionHandlers = handleThunks({
const {
path,
allowFoldersWithoutTrailingSlashes = false
allowFoldersWithoutTrailingSlashes = false,
includeFiles = false
} = payload;
const promise = createAjaxRequest({
url: '/filesystem',
data: {
path,
allowFoldersWithoutTrailingSlashes
allowFoldersWithoutTrailingSlashes,
includeFiles
}
}).request;