mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-12 11:23:52 +02:00
set cache directory as absolute path
This commit is contained in:
@@ -6,6 +6,7 @@
|
||||
using CefSharp;
|
||||
using CefSharp.WinForms;
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace VRCX
|
||||
@@ -19,7 +20,7 @@ namespace VRCX
|
||||
{
|
||||
var settings = new CefSettings
|
||||
{
|
||||
CachePath = "cache",
|
||||
CachePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "cache"),
|
||||
PersistUserPreferences = true,
|
||||
PersistSessionCookies = true,
|
||||
WindowlessRenderingEnabled = true
|
||||
|
||||
Reference in New Issue
Block a user