Skip to content

Commit ea2d1f7

Browse files
committed
Fix GitHub Issues API url
1 parent 5762bc9 commit ea2d1f7

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

src/main/kotlin/errorreporter/AnonymousFeedback.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ object AnonymousFeedback {
3030
data class FeedbackData(val url: String, val token: Int, val isDuplicate: Boolean)
3131

3232
private const val authedUrl = "https://www.denwav.dev/errorReport"
33-
private const val baseUrl = "https://api.github.com/repos/minecraft-dev/MinecraftDev/issues"
33+
private const val baseUrl = "https://api.github.com/repos/minecraft-dev/mcdev-error-report/issues"
3434

3535
fun sendFeedback(
3636
factory: HttpConnectionFactory,

src/main/kotlin/errorreporter/ErrorData.kt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,6 @@ class ErrorData(var throwable: Throwable?, val lastAction: String?) {
2222

2323
var message: String? = null
2424
get() = field ?: throwable?.message
25-
set(value) {
26-
field = value
27-
}
2825

2926
var description: String? = null
3027
var pluginName: String? = null

0 commit comments

Comments
 (0)