aboutsummaryrefslogtreecommitdiff
path: root/builtin
diff options
context:
space:
mode:
authorsfan5 <sfan5@live.de>2021-04-02 16:31:44 +0200
committersfan5 <sfan5@live.de>2021-04-05 16:02:32 +0200
commite5f802ab5cb32b242b0261000f8836a7da72a4bc (patch)
treedb3cf0c20750dca8842efeafaac766cc4c299ae2 /builtin
parent847860fc5cf8867deb45646670ce1f11c3f977b0 (diff)
downloadminetest-e5f802ab5cb32b242b0261000f8836a7da72a4bc.tar.gz
minetest-e5f802ab5cb32b242b0261000f8836a7da72a4bc.tar.bz2
minetest-e5f802ab5cb32b242b0261000f8836a7da72a4bc.zip
Fix server favorites not saving when client/serverlist/ doesn't exist already (#11152)
Diffstat (limited to 'builtin')
-rw-r--r--builtin/mainmenu/serverlistmgr.lua10
1 files changed, 6 insertions, 4 deletions
diff --git a/builtin/mainmenu/serverlistmgr.lua b/builtin/mainmenu/serverlistmgr.lua
index 9876d8ac5..964d0c584 100644
--- a/builtin/mainmenu/serverlistmgr.lua
+++ b/builtin/mainmenu/serverlistmgr.lua
@@ -90,8 +90,11 @@ function serverlistmgr.sync()
end
--------------------------------------------------------------------------------
-local function get_favorites_path()
+local function get_favorites_path(folder)
local base = core.get_user_path() .. DIR_DELIM .. "client" .. DIR_DELIM .. "serverlist" .. DIR_DELIM
+ if folder then
+ return base
+ end
return base .. core.settings:get("serverlist_file")
end
@@ -103,9 +106,8 @@ local function save_favorites(favorites)
core.settings:set("serverlist_file", filename:sub(1, #filename - 4) .. ".json")
end
- local path = get_favorites_path()
- core.create_dir(path)
- core.safe_file_write(path, core.write_json(favorites))
+ assert(core.create_dir(get_favorites_path(true)))
+ core.safe_file_write(get_favorites_path(), core.write_json(favorites))
end
--------------------------------------------------------------------------------
sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "jthread/jthread.h" #include <assert.h> #define UNUSED(expr) do { (void)(expr); } while (0) #ifndef _WIN32_WCE #include <process.h> #endif // _WIN32_WCE JThread::JThread() { retval = NULL; requeststop = false; running = false; } JThread::~JThread() { Kill(); } void JThread::Wait() { if (running) { WaitForSingleObject(threadhandle, INFINITE); } } int JThread::Start() { if (running) { return ERR_JTHREAD_ALREADYRUNNING; } requeststop = false; continuemutex.Lock(); #ifndef _WIN32_WCE threadhandle = (HANDLE)_beginthreadex(NULL,0,TheThread,this,0,&threadid); #else threadhandle = CreateThread(NULL,0,TheThread,this,0,&threadid); #endif // _WIN32_WCE if (threadhandle == NULL) { continuemutex.Unlock(); return ERR_JTHREAD_CANTSTARTTHREAD; } /* Wait until 'running' is set */ while (!running) { Sleep(1); } continuemutex.Unlock(); continuemutex2.Lock(); continuemutex2.Unlock(); return 0; } int JThread::Kill() { if (!running) { return ERR_JTHREAD_NOTRUNNING; } TerminateThread(threadhandle,0); CloseHandle(threadhandle); running = false; return 0; } void *JThread::GetReturnValue() { void *val; if (running) { val = NULL; } else { val = retval; } return val; } bool JThread::IsSameThread() { return GetCurrentThreadId() == threadid; }