forked from DebaucheryLibrarian/traxxx
Updated dependencies. Added periodic memory logger.
This commit is contained in:
@@ -74,7 +74,7 @@ const routes = [
|
||||
{
|
||||
path: '/actor/:actorId/:actorSlug',
|
||||
name: 'actor',
|
||||
redirect: from => ({
|
||||
redirect: (from) => ({
|
||||
name: 'actorRange',
|
||||
params: {
|
||||
...from.params,
|
||||
@@ -91,7 +91,7 @@ const routes = [
|
||||
{
|
||||
path: '/director/:actorId/:actorSlug',
|
||||
name: 'director',
|
||||
redirect: from => ({
|
||||
redirect: (from) => ({
|
||||
name: 'directorRange',
|
||||
params: {
|
||||
...from.params,
|
||||
@@ -107,7 +107,7 @@ const routes = [
|
||||
},
|
||||
{
|
||||
path: '/channel/:entitySlug',
|
||||
redirect: from => ({
|
||||
redirect: (from) => ({
|
||||
name: 'channel',
|
||||
params: {
|
||||
...from.params,
|
||||
@@ -123,7 +123,7 @@ const routes = [
|
||||
},
|
||||
{
|
||||
path: '/network/:entitySlug',
|
||||
redirect: from => ({
|
||||
redirect: (from) => ({
|
||||
name: 'network',
|
||||
params: {
|
||||
...from.params,
|
||||
@@ -139,7 +139,7 @@ const routes = [
|
||||
},
|
||||
{
|
||||
path: '/studio/:entitySlug',
|
||||
redirect: from => ({
|
||||
redirect: (from) => ({
|
||||
name: 'studio',
|
||||
params: {
|
||||
...from.params,
|
||||
@@ -155,7 +155,7 @@ const routes = [
|
||||
},
|
||||
{
|
||||
path: '/tag/:tagSlug',
|
||||
redirect: from => ({
|
||||
redirect: (from) => ({
|
||||
name: 'tag',
|
||||
params: {
|
||||
...from.params,
|
||||
@@ -171,7 +171,7 @@ const routes = [
|
||||
},
|
||||
{
|
||||
path: '/actors',
|
||||
redirect: from => ({
|
||||
redirect: (from) => ({
|
||||
name: 'actors',
|
||||
params: {
|
||||
...from.params,
|
||||
@@ -229,7 +229,7 @@ const routes = [
|
||||
},
|
||||
{
|
||||
path: '/stash/:stashId/:stashSlug',
|
||||
redirect: from => ({
|
||||
redirect: (from) => ({
|
||||
name: 'stash',
|
||||
params: {
|
||||
...from.params,
|
||||
|
||||
Reference in New Issue
Block a user