Reduce number of recently played music displayed

This commit is contained in:
Laura Hausmann 2022-11-27 23:41:53 +01:00
parent 826ddc76d3
commit 377fa58320
Signed by: zotan
GPG key ID: D044E84C5BE01605

View file

@ -5,7 +5,7 @@
@{ @{
ViewData["title"] = "now playing"; ViewData["title"] = "now playing";
var db = new Database.DbConn(); var db = new Database.DbConn();
var albums = db.AlbumHistory.OrderByDescending(p => p.DateTime).Take(50); var albums = db.AlbumHistory.OrderByDescending(p => p.DateTime).Take(30);
} }
<p>Here you can see what kind of music I've been listening to lately. This table is updated every couple minutes from multiple data sources.</p> <p>Here you can see what kind of music I've been listening to lately. This table is updated every couple minutes from multiple data sources.</p>
@ -25,4 +25,4 @@
</td> </td>
</tr> </tr>
} }
</table> </table>