mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-21 10:01:27 -07:00
Fix some bugs
This commit is contained in:
parent
aac6ec3d4c
commit
ba0b5e85be
@ -349,9 +349,14 @@ namespace Bloxstrap
|
|||||||
{
|
{
|
||||||
startEvent.Reset();
|
startEvent.Reset();
|
||||||
|
|
||||||
|
string rbxLogDir = Path.Combine(Paths.LocalAppData, "Roblox\\logs");
|
||||||
|
|
||||||
|
if (!Directory.Exists(rbxLogDir))
|
||||||
|
Directory.CreateDirectory(rbxLogDir);
|
||||||
|
|
||||||
var logWatcher = new FileSystemWatcher()
|
var logWatcher = new FileSystemWatcher()
|
||||||
{
|
{
|
||||||
Path = Path.Combine(Paths.LocalAppData, "Roblox\\logs"),
|
Path = rbxLogDir,
|
||||||
Filter = "*.log",
|
Filter = "*.log",
|
||||||
EnableRaisingEvents = true
|
EnableRaisingEvents = true
|
||||||
};
|
};
|
||||||
|
@ -36,7 +36,7 @@ namespace Bloxstrap.UI.ViewModels.ContextMenu
|
|||||||
|
|
||||||
if (entries.Any())
|
if (entries.Any())
|
||||||
{
|
{
|
||||||
string universeIds = String.Join(',', entries.GroupBy(x => x.UniverseId).Select(x => x.First()));
|
string universeIds = String.Join(',', entries.Select(x => x.UniverseId).Distinct());
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user