Skip to content

Commit 6836d37

Browse files
committed
Merge branch 'master' of github.com:vanZeben/BeatSaberOnline
2 parents 2845f55 + 51b0a95 commit 6836d37

File tree

3 files changed

+22
-2
lines changed

3 files changed

+22
-2
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Bug report
33
about: Create a report to help us improve
44
title: "[BUG]"
5-
labels: bug
5+
labels: bug, unverified
66
assignees: vanZeben
77

88
---
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: "[Feature]"
5+
labels: enhancement, unverified
6+
assignees: vanZeben
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.

BeatSaberOnline/Utils/AutoUpdater.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public static IEnumerator GetLatestVersionDownload()
3636
string status = result[0]["approval"];
3737

3838
// Check if the remote version on modsaber is newer than what we have and if that version is approved
39-
if (latestVersion <= currentVersion && status == "approved") yield break;
39+
if (latestVersion <= currentVersion && status != "approved") yield break;
4040

4141
Data.Logger.Info($"Found a new version, lets download it {result[0]["files"]["steam"]["url"].Value}");
4242

0 commit comments

Comments
 (0)