We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 039b135 commit 3a88522Copy full SHA for 3a88522
src/componentes/journal/tokenizer.js
@@ -530,11 +530,11 @@ export const JLogTokenizer = config => {
530
{
531
const rpe = rpes[i];
532
533
- if( rpe<6 || rpe>10 || (rpe != Math.floor(rpe) && rpe!=Math.floor(rpe)+0.5 ) )
+ if( rpe<1 || rpe>10 || (rpe != Math.floor(rpe) && rpe!=Math.floor(rpe)+0.5 ) )
534
535
offset = rpeString.indexOf( rpe.toString() );
536
length = rpe.toString().length;
537
- throw new Error("Invalid RPE. It must be a number between 6 and 10. And only a diference of 0.5 between each. Example: @ 6.5 | You wrote: "+rpe);
+ throw new Error("Invalid RPE. It must be a number between 1 and 10. And only a diference of 0.5 between each. Example: @ 6.5 | You wrote: "+rpe);
538
}
539
540
0 commit comments