Is this parameter needed?

The parameter I am talking about specifically is the __generatorLastEditTime parameter.

This is a visual example:

Is there any problem in removing it?

I was using Vue Router with its createWebHashHistory() API to make hash routes for an application, since Perchance doesn't support actual routes for apps.

I made a simple logic to simply remove it.

const url = new URL(location.href)
url.searchParams.delete('__generatorLastEditTime')
history.replaceState(null, '', url)

Now you get a cleaner URL instead.

You can check out the project here.

1 points · 2 comments · view on lemmy.world

2 Comments

Cocell@lemmy.world · 1 pts · 1y

Pinging @Perchance Dev and @VioneT.

Cocell@lemmy.world · 1 pts · 1y

So, I decided to to look into Perchance's internal code myself, since I couldn't get an answer.

A screenshot that shows Perchance's internal scripts using the __generatorLastEditTime parameter and __initWithDataFromParentWindow parameter along with some other logic.

And it looks like Both the __generatorLastEditTime parameter and the __initWithDataFromParentWindow parameter are needed ONLY during the initial load.

And looking at this part of the code, it seems like Perchance dev is already moving away from the __generatorLastEditTime parameter.

// if(window.location.href.includes("__generatorLastEditTime=")) return;

So, I am assuming it is fine to remove these two parameters after the app has loaded. However, I could be wrong, these are just my general understanding after looking into the internal logic.