forked from projects/fipamo
fix for setting feature background url properly, bumped version number
This commit is contained in:
parent
a568976bad
commit
b14a668baf
2 changed files with 5 additions and 3 deletions
|
@ -50,7 +50,9 @@ export default class Settings {
|
||||||
}
|
}
|
||||||
if (!_.isEqual(result.settings.global, payload.global)) {
|
if (!_.isEqual(result.settings.global, payload.global)) {
|
||||||
let bg = payload.global.background;
|
let bg = payload.global.background;
|
||||||
payload.global.background = bg.substr(21, bg.length);
|
let chunks = bg.split('/');
|
||||||
|
let strip = chunks[0] + '/' + chunks[1] + chunks[2];
|
||||||
|
payload.global.background = bg.substr(strip.length + 1, bg.length);
|
||||||
result.settings.global = payload.global;
|
result.settings.global = payload.global;
|
||||||
needToUpdate = true;
|
needToUpdate = true;
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "fipamo-beta",
|
"name": "fipamo-beta",
|
||||||
"version": "1.2.0",
|
"version": "1.2.2",
|
||||||
"private": true,
|
"private": true,
|
||||||
"description": "The most chill blog framework ever.",
|
"description": "The most chill blog framework ever.",
|
||||||
"repository": "https://code.playvicio.us/Are0h/Fipamo",
|
"repository": "https://code.playvicio.us/Are0h/Fipamo",
|
||||||
|
|
Loading…
Reference in a new issue