A fork of attic a self-hostable Nix Binary Cache server
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

rustfmt

+2 -1
+2 -1
server/src/database/mod.rs
··· 121 121 query = prefix_column::<nar::Entity, _>(query, SELECT_NAR); 122 122 123 123 if include_chunks { 124 - query = query.join(JoinType::InnerJoin, nar::Relation::ChunkRef.def()) 124 + query = query 125 + .join(JoinType::InnerJoin, nar::Relation::ChunkRef.def()) 125 126 .join(JoinType::LeftJoin, chunkref::Relation::Chunk.def()) 126 127 .order_by_asc(chunkref::Column::Seq); 127 128