• R/O
  • SSH

fcf: Commit

FCF - Full Stack Javascript Framework

OpenSource is a full stack development framework designed to simplify the development of WEB projects of various complexity levels.

It is based on unique technologies that open up new opportunities in development approaches with NODEJS.


Commit MetaInfo

Revisionb5b3f29779a6f0f11c740fb680aced6d4bf42371 (tree)
Zeit2021-01-15 03:09:49
AutorVladimir Markin <v.o.markin221@gmai...>
CommiterVladimir Markin

Log Message

save

Ändern Zusammenfassung

Diff

diff -r b8b712c308c2 -r b5b3f29779a6 NRender/NDetails/Loader.js
--- a/NRender/NDetails/Loader.js Wed Jan 13 22:42:14 2021 +0300
+++ b/NRender/NDetails/Loader.js Thu Jan 14 21:09:49 2021 +0300
@@ -98,9 +98,8 @@
9898 let originPath = a_path;
9999 a_path = fcf.getPath(a_path);
100100
101- if (innerTemplateStorage[a_path]){
101+ if (innerTemplateStorage[a_path])
102102 return innerTemplateStorage[a_path];
103- }
104103
105104 let data = await fcf.load({path: a_path, aliases: a_state.theme.getAliases()})
106105
diff -r b8b712c308c2 -r b5b3f29779a6 NServer/Application.js
--- a/NServer/Application.js Wed Jan 13 22:42:14 2021 +0300
+++ b/NServer/Application.js Thu Jan 14 21:09:49 2021 +0300
@@ -651,7 +651,7 @@
651651 if (!context.session.id)
652652 return a_info;
653653
654- if (!a_info.nodeInfo.userImportance)
654+ if (a_info.nodeInfo && !a_info.nodeInfo.userImportance)
655655 return a_info;
656656
657657 return fcf.application.getStorage().query({
@@ -708,7 +708,7 @@
708708 })
709709 })
710710 .then((a_info)=>{
711- if (!a_info.nodeInfo.userImportance)
711+ if (a_info.nodeInfo && !a_info.nodeInfo.userImportance)
712712 return a_info;
713713 return self._router.getNode(routeInfo.uri)
714714 .then((a_nodeInfo)=>{
Show on old repository browser