Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -401,14 +401,15 @@ it. It is currently adviceable to remove it or set it inactive rather
than set a large quota, because the current implementation will impair
write performance if there is a lot of data.

## Contribute to Solid
## Get help and contribute

Solid is only possible because of a large community of [contributors](https://github.com/solid/node-solid-server/blob/master/CONTRIBUTORS.md).
A heartfelt thank you to everyone for all of your efforts!

You can help us too:
You can receive or provide help too:

- [Join us in Gitter](https://gitter.im/solid/chat) to help with development or to hang out with us :)
- [Join us in Gitter](https://gitter.im/solid/chat) to chat about Solid or to hang out with us :)
- [NSS Gitter channel](https://gitter.im/solid/node-solid-server) for specific (installation) advice about this code base
- [Create a new issue](https://github.com/solid/node-solid-server/issues/new) to report bugs
- [Fix an issue](https://github.com/solid/node-solid-server/issues)
- Reach out to Jackson at [email protected] to become more involved in maintaining Node Solid Server
Expand Down
2 changes: 1 addition & 1 deletion lib/ldp-container.js
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ function addStats (resourceGraph, reqUri, stats, filename) {
ns.stat('size'),
stats.size)

if (mime.lookup(filename)) { // Is the file has a well-known type,
if (!reqUri.endsWith('/') && mime.lookup(filename)) { // Is the file has a well-known type,
let type = 'http://www.w3.org/ns/iana/media-types/' + mime.lookup(filename) + '#Resource'
resourceGraph.add(
resourceGraph.sym(reqUri),
Expand Down