Skip to content

Commit bbd65d0

Browse files
committed
Fix broken quack
1 parent f48a49d commit bbd65d0

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

data/reminduck.gresource.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<gresources>
3-
<gresource prefix="/io.github.elly_code.reminduck">
3+
<gresource prefix="/io/github/elly_code/reminduck">
44
<file alias="Application.css">Application.css</file>
55
<file alias="default_quack.ogg">sounds/default_quack.ogg</file>
66
<file alias="plastic_quack.ogg">sounds/plastic_quack.ogg</file>

src/Objects/Quack.vala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@ public enum Reminduck.QuackType {
4444

4545
public string to_resource_path () {
4646
switch (this) {
47-
case DEFAULT: return "/io.github.elly_code.reminduck/default_quack.ogg";
48-
case PLASTIC: return "/io.github.elly_code.reminduck/plastic_quack.ogg";
47+
case DEFAULT: return "/io/github/elly_code/reminduck/default_quack.ogg";
48+
case PLASTIC: return "/io/github/elly_code/reminduck/plastic_quack.ogg";
4949
case RANDOM: return random ().to_resource_path ();
50-
default: return "/io.github.elly_code.reminduck/quack.ogg";
50+
default: return "/io/github/elly_code/reminduck/quack.ogg";
5151
}
5252
}
5353

0 commit comments

Comments
 (0)