no message

This commit is contained in:
Roger Far 2021-01-21 10:16:18 -07:00
parent 9ab889f7db
commit 67b009efcd
3 changed files with 12 additions and 2 deletions

View file

@ -1 +1,9 @@
docker buildx build --push --platform linux/arm64/v8,linux/amd64 --tag rogerfar/rdtclient .
docker build --tag rogerfar/rdtclient:amd64 --build-arg ARCH=amd64/ .
docker push rogerfar/rdtclient:amd64
docker build -t rogerfar/rdtclient:arm64v8 --build-arg ARCH=arm64v8/ .
docker push rogerfar/rdtclient:arm64v8
docker manifest create rogerfar/rdtclient:latest --amend rogerfar/rdtclient:amd64 --amend rogerfar/rdtclient:arm64v8
docker manifest push rogerfar/rdtclient:latest

View file

@ -80,7 +80,7 @@ namespace RdtClient.Data.Data
{
SettingId = "DownloadLimit",
Type = "Int32",
Value = "10"
Value = "2"
},
new Setting
{

View file

@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.EntityFrameworkCore;
using RdtClient.Data.Models.Data;
@ -32,6 +33,7 @@ namespace RdtClient.Data.Data
var results = await _dataContext.Torrents
.AsNoTracking()
.Include(m => m.Downloads)
.OrderByDescending(m => m.Added)
.ToListAsync();
return results;