Merge branch 'dev'

This commit is contained in:
N-Pex 2022-10-29 09:35:41 +02:00
commit b70d0a975c
3 changed files with 3 additions and 3 deletions

View file

@ -50,7 +50,7 @@
{
"quote":"Every child is an artist. The problem is how to remain an artist once he grows up.","author":"Pablo Picasso"},
{
"quote":"You can never cross the ocean until you have the courage to lose sight of the shore.","author":"Christopher Columbus"},
"quote":"We will be known forever by the tracks we leave.","author":"Dakota Tribe"},
{
"quote":"Ive learned that people will forget what you said, people will forget what you did, but people will never forget how you made them feel.","author":"Maya Angelou"},
{

View file

@ -82,7 +82,7 @@ export default {
while (lines.length && !lines[0].startsWith('> ')) lines.shift();
// Reply fallback has a blank line after it, so remove it to prevent leading newline
if (lines[0] === '') lines.shift();
const text = lines[0].replace(/^> (<.*> )?/g, '');
const text = lines[0] && lines[0].replace(/^> (<.*> )?/g, '');
if (text) {
return text;
}

View file

@ -19,7 +19,7 @@ module.exports = {
resolve: {
fallback: {
"path": require.resolve("path-browserify"),
"crypto": false, //require.resolve("crypto-browserify"),
"crypto": require.resolve("crypto-browserify"),
"stream": require.resolve("stream-browserify"),
"fs": require.resolve("browserify-fs"),
"buffer": require.resolve("buffer")