Compare commits
No commits in common. "a09bd3e407b2de1e83a6a6281420e25fd01f4f04" and "ab9dbb63b3cd987f701e841df6ab74f39925e618" have entirely different histories.
a09bd3e407
...
ab9dbb63b3
|
|
@ -1,11 +1,11 @@
|
||||||
{
|
{
|
||||||
"name": "traxxx-web",
|
"name": "traxxx-web",
|
||||||
"version": "0.17.4",
|
"version": "0.17.3",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"version": "0.17.4",
|
"version": "0.17.3",
|
||||||
"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.4"
|
"version": "0.17.3"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -166,7 +166,7 @@ export async function fetchScenesById(sceneIds, { reqUser, ...context } = {}) {
|
||||||
});
|
});
|
||||||
|
|
||||||
const actorStashes = reqUser && context.actorStashes
|
const actorStashes = reqUser && context.actorStashes
|
||||||
? await knexOwner('stashes_actors')
|
? await knex('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