diff options
| author | Bob Zeleznik <zzzman@gmail.com> | 2019-10-14 19:00:40 -0400 |
|---|---|---|
| committer | Bob Zeleznik <zzzman@gmail.com> | 2019-10-14 19:00:40 -0400 |
| commit | e8e713173e93eaa9fc2d2865d5efabdcca51b1f3 (patch) | |
| tree | 30307ed32bd901d6cfab67eb31ad5c4b19acf432 /src/server/index.ts | |
| parent | 6b920e22fe502a752d6c3cc1d0ffa7657022a7ac (diff) | |
fixed some minor layout issues with flyout and masonry views
Diffstat (limited to 'src/server/index.ts')
| -rw-r--r-- | src/server/index.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/index.ts b/src/server/index.ts index 2203ae2e1..c1dba2976 100644 --- a/src/server/index.ts +++ b/src/server/index.ts @@ -142,7 +142,7 @@ function addSecureRoute(initializer: RouteInitializer) { const { user, originalUrl: target } = req; if (user || isSharedDocAccess(target)) { try { - await onValidation(user, req, res); + await onValidation(user as any, req, res); } catch (e) { if (onError) { onError(req, res, e); |
