From 2490fb661474db9ecaeab696387d478be3f150a6 Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Wed, 2 Dec 2020 20:37:20 -0600 Subject: [PATCH] Fix the patreon link in the default bookmarks --- app/bg/filesystem/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/bg/filesystem/index.js b/app/bg/filesystem/index.js index bdb0130f1d..12453f9cd9 100644 --- a/app/bg/filesystem/index.js +++ b/app/bg/filesystem/index.js @@ -80,14 +80,14 @@ export async function setup () { // default pinned bookmarks if (isInitialCreation) { await rootDrive.pda.mkdir('/bookmarks') - await rootDrive.pda.writeFile(`/bookmarks/patreon-com-andrew_maf_and_paul.goto`, '', {metadata: {href: 'https://patreon.com/andrew_maf_and_paul', title: 'Support Beaker'}}) + await rootDrive.pda.writeFile(`/bookmarks/patreon-com-paul_maf_and_andrew.goto`, '', {metadata: {href: 'https://patreon.com/paul_maf_and_andrew', title: 'Support Beaker'}}) await rootDrive.pda.writeFile(`/bookmarks/beaker-dev-docs-templates.goto`, '', {metadata: {href: 'https://beaker.dev/docs/templates/', title: 'Hyperdrive Templates'}}) await rootDrive.pda.writeFile(`/bookmarks/twitter.goto`, '', {metadata: {href: 'https://twitter.com/', title: 'Twitter'}}) await rootDrive.pda.writeFile(`/bookmarks/reddit.goto`, '', {metadata: {href: 'https://reddit.com/', title: 'Reddit'}}) await rootDrive.pda.writeFile(`/bookmarks/youtube.goto`, '', {metadata: {href: 'https://youtube.com/', title: 'YouTube'}}) await rootDrive.pda.mkdir('/beaker') await rootDrive.pda.writeFile(`/beaker/pins.json`, JSON.stringify([ - 'https://patreon.com/andrew_maf_and_paul', + 'https://patreon.com/paul_maf_and_andrew', 'https://beaker.dev/docs/templates/', 'https://twitter.com/', 'https://reddit.com/',