Compare commits
2 Commits
ab9dbb63b3
...
a09bd3e407
Author | SHA1 | Date |
---|---|---|
|
a09bd3e407 | |
|
08ef996a61 |
|
@ -1,11 +1,11 @@
|
||||||
{
|
{
|
||||||
"name": "traxxx-web",
|
"name": "traxxx-web",
|
||||||
"version": "0.17.3",
|
"version": "0.17.4",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"version": "0.17.3",
|
"version": "0.17.4",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@brillout/json-serializer": "^0.5.8",
|
"@brillout/json-serializer": "^0.5.8",
|
||||||
"@dicebear/collection": "^7.0.5",
|
"@dicebear/collection": "^7.0.5",
|
||||||
|
|
|
@ -72,5 +72,5 @@
|
||||||
"postcss-custom-media": "^10.0.2",
|
"postcss-custom-media": "^10.0.2",
|
||||||
"postcss-nesting": "^12.0.2"
|
"postcss-nesting": "^12.0.2"
|
||||||
},
|
},
|
||||||
"version": "0.17.3"
|
"version": "0.17.4"
|
||||||
}
|
}
|
||||||
|
|
|
@ -166,7 +166,7 @@ export async function fetchScenesById(sceneIds, { reqUser, ...context } = {}) {
|
||||||
});
|
});
|
||||||
|
|
||||||
const actorStashes = reqUser && context.actorStashes
|
const actorStashes = reqUser && context.actorStashes
|
||||||
? await knex('stashes_actors')
|
? await knexOwner('stashes_actors')
|
||||||
.leftJoin('stashes', 'stashes.id', 'stashes_actors.stash_id')
|
.leftJoin('stashes', 'stashes.id', 'stashes_actors.stash_id')
|
||||||
.where('stashes.user_id', reqUser.id)
|
.where('stashes.user_id', reqUser.id)
|
||||||
.whereIn('stashes_actors.actor_id', actors.map((actor) => actor.id))
|
.whereIn('stashes_actors.actor_id', actors.map((actor) => actor.id))
|
||||||
|
|
Loading…
Reference in New Issue