This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
NGnius
/
leadercraft-s
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Fix url gen to use id
master
NGnius (Graham)
4 years ago
parent
4fcc9ec149
commit
bf31299f94
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
sql_structs.go
+ 1
- 1
sql_structs.go
View File
@@ -96,7 +96,7 @@ func (b *Board) SomeEntries(start, end int64) ([]*Entry, error) {
}
func (b *Board) Url() string {
return "/board?id=" +
b.Name
return "/board?id=" +
strconv.Itoa(int(b.ID))
}
// implementation of Jsonable